Exemple #1
0
 public void BeginState()
 {
     currentState.BeginState();
 }
Exemple #2
0
 public void SwitchTo(int stateTo)
 {
     currentState.EndState();
     currentState = states[stateTo](this);
     currentState.BeginState();
 }