コード例 #1
0
 public static PreProcessStateController Register()
 {
     PreProcessStateController retV = new PreProcessStateController ();
     StateController.Register (GameState.PreProcess, retV, false);
     retV.AddTransition ((uint)GameState.Init, GameState.Init);
     return retV;
 }
コード例 #2
0
        public static PreProcessStateController Register()
        {
            PreProcessStateController retV = new PreProcessStateController();

            StateController.Register(GameState.PreProcess, retV, false);
            retV.AddTransition((uint)GameState.Init, GameState.Init);
            return(retV);
        }
コード例 #3
0
 void StatesInit()
 {
     PreProcessStateController.Register();
     InitStateController.Register();
     LoginStateController.Register();
     NoticeStateController.Register();
     MainMenuStateController.Register();
     PreBattleStateController.Register();
     BattleStateController.Register();
     PostBattleStateController.Register();
     InTransitionStateController.Register();
     CriticalErrorStateController.Register();
     ExitFinalizeStateController.Register();
 }