Files
brick-framework/GameCore/AI/AIState.cs

9 lines
91 B
C#

namespace GameCore.AI;
public enum AIState
{
Idle,
Patrol,
Chase,
Attack
}