public PlayerTurnState(IStateController controller, ISelectActions actionSelector, ISubject playerTurnEnder, ISetInteractable[] playerButtons) : base(controller) { this.actionSelector = actionSelector; this.playerTurnEnder = playerTurnEnder; this.playerButtons = playerButtons; }
public EnemyTurnState(IStateController controller, ISelectActions actionSelector) : base(controller) { this.actionSelector = actionSelector; }