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