Behavior for resting our character.
Inheritance: BaseState
Exemplo n.º 1
0
 public BattleState(StateMemory fface) : base(fface)
 {
     _restState = new RestState(fface);
 }
Exemplo n.º 2
0
 public BattleState(IMemoryAPI fface) : base(fface)
 {
     _executor  = new Executor(fface);
     _restState = new RestState(fface);
 }