public StateReady(Controller.StateController controller, StateError error)
 {
     this.stateController = controller;
     this.stateError = error;
     this.statePlay = new StatePlay(controller, error, this);
 }
Exemplo n.º 2
0
 public StatePlay(Controller.StateController controller, StateError error, StateReady ready)
 {
     this.stateController = controller;
     this.stateError = error;
     this.stateReady = ready;
 }