Example #1
0
 public GameFSM(Game content, GameFSMState enterState) : base(content, enterState)
 {
 }
Example #2
0
 public void Init(GameFSMState enterState, IApp app)
 {
     fsm = new GameFSM(this, enterState);
     fsm.Reset();
     this.app = app;
 }