Exemplo n.º 1
0
 protected void EnterState(GameSession.GameState gameState)
 {
     if (gameSession.isServer)
     {
         gameSession.ServerPushState(gameState);
     }
 }
Exemplo n.º 2
0
 protected void ChangeState(GameSession.GameState gameState)
 {
     if (gameSession.isServer)
     {
         gameSession.ServerChangeState(gameState);
     }
 }