Пример #1
0
 public StateInit(Controller.StateController controller)
 {
     this.stateController = controller;
     this.stateError = new StateError(controller);
     this.stateReady = new StateReady(controller, this.stateError);
 }
Пример #2
0
 public StatePlay(Controller.StateController controller, StateError error, StateReady ready)
 {
     this.stateController = controller;
     this.stateError = error;
     this.stateReady = ready;
 }