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