11 lines
153 B
C#
11 lines
153 B
C#
namespace Characters.Enemy
|
|
{
|
|
public enum EnemyState : byte
|
|
{
|
|
Idle,
|
|
Patrol,
|
|
Chase,
|
|
Stunned,
|
|
Attack
|
|
}
|
|
} |