Exemplo n.º 1
0
 public GameUpdate(Utility.StateMachine <IGameEntry> machine)
     : base(machine)
 {
     m_nStateID = (int)GameState.Update;
 }
Exemplo n.º 2
0
 public DownloadFile(Utility.StateMachine <IGameEntry> machine)
     : base(machine)
 {
     m_nStateID = (int)GameState.DownLoad;
 }
Exemplo n.º 3
0
 public CopyFile(Utility.StateMachine <IGameEntry> machine)
     : base(machine)
 {
     m_nStateID = (int)GameState.CopyFile;
 }
Exemplo n.º 4
0
 public GameStateBase(Utility.StateMachine <IGameEntry> machine)
 {
     m_Statemachine = machine;
 }