Example #1
0
 //建構子
 public ISceneState(SceneStateControler Controler)
 {
     m_Controler = Controler;
 }
Example #2
0
 public MainGameState(SceneStateControler controler) : base(controler)
 {
     this.StateName = "MainGameState";
 }
Example #3
0
 public TitleState(SceneStateControler Controler) : base(Controler)
 {
     this.StateName = "TitleState";
 }