11 lines
153 B
C#
Raw Normal View History

2024-03-19 17:42:38 +03:00
namespace Characters.Enemy
{
public enum EnemyState : byte
{
Idle,
Patrol,
Chase,
Stunned,
Attack
}
}