예제 #1
0
 public GameFSM(Game content, GameFSMState enterState) : base(content, enterState)
 {
 }
예제 #2
0
파일: Game.cs 프로젝트: hsiuqnav/configMgr
 public void Init(GameFSMState enterState, IApp app)
 {
     fsm = new GameFSM(this, enterState);
     fsm.Reset();
     this.app = app;
 }