mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 11:17:14 +08:00
33 lines
716 B
C#
33 lines
716 B
C#
|
|
namespace AI
|
||
|
|
{
|
||
|
|
public class JobGiver_ContinuousMove : AIBase
|
||
|
|
{
|
||
|
|
public override JobBase GetJob(Entity.Entity target)
|
||
|
|
{
|
||
|
|
return new MoveJob();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
public class JobGiver_Enemies : AIBase
|
||
|
|
{
|
||
|
|
public override JobBase GetJob(Entity.Entity target)
|
||
|
|
{
|
||
|
|
return new TrackPlayerJob();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
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();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|