mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:35:34 +00:00
12 lines
147 B
C#
12 lines
147 B
C#
|
|
namespace Cirno.Scripts.Enums;
|
|||
|
|
|
|||
|
|
public enum EnemyState
|
|||
|
|
{
|
|||
|
|
Init,
|
|||
|
|
Idle,
|
|||
|
|
Alert,
|
|||
|
|
Patrolling,
|
|||
|
|
Shooting,
|
|||
|
|
Dead,
|
|||
|
|
Controlled
|
|||
|
|
}
|