Esempio n. 1
0
 // Use this for initialization
 void Start()
 {
     current_state = new CExpecting();
 }
Esempio n. 2
0
 // Handles the next state
 public void StateChanged()
 {
     current_state = current_state.GetNextState();
 }