7 lines
121 B
C#

public interface IEnemyState
{
void Enter(EnemyController enemyController);
void Update();
void Exit();
}