mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-28 00:07:58 +01:00
11 lines
158 B
C#
11 lines
158 B
C#
|
namespace Fie.AI
|
||
|
{
|
||
|
public class FieAITaskCommonIdle : FieAITaskBase
|
||
|
{
|
||
|
public override bool Task(FieAITaskController manager)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|