Files
Gen_Hack-and-Slash-Roguelit…/Client/Assets/Scripts/AI/JobGiver.cs

27 lines
540 B
C#
Raw Normal View History

namespace AI
{
public class JobGiver_ContinuousMove : AIBase
{
public override JobBase GetJob(Entity.Entity target)
{
return new MoveJob();
}
}
2025-08-25 18:24:12 +08:00
public class JobGiver_RandomWander : AIBase
{
public override JobBase GetJob(Entity.Entity target)
{
return new WanderJob();
}
}
public class JobGiver_Idel : AIBase
{
public override JobBase GetJob(Entity.Entity target)
{
return new IdleJob();
}
}
}