Exemplo n.º 1
0
 public ServerLoadSubResourceState(IContexts contexts, EServerSessionStates state, EServerSessionStates next) : base(
         contexts, (int)state, (int)next)
 {
 }
Exemplo n.º 2
0
 public ServerPreLoadState(IContexts contexts, EServerSessionStates state, EServerSessionStates next) : base(
         contexts, (int)state, (int)next)
 {
 }
Exemplo n.º 3
0
 public ServerLoadConfigurationState(IContexts contexts, EServerSessionStates state, EServerSessionStates next) : base(
         contexts, (int)state, (int)next)
 {
 }
Exemplo n.º 4
0
 public GameSessionState(IContexts contexts, ServerRoom room, EServerSessionStates state,
                         EServerSessionStates next) : base(contexts, (int)state, (int)next)
 {
     this.room = room;
 }