Example #1
0
 public void CmdEndTurn()
 {
     if (GameManagerV2.IsTurn(playerId))
     {
         GameManagerV2.NextPlayer();
     }
 }
Example #2
0
 private void Update()
 {
     if (isLocalPlayer)
     {
         if (MovePanelBool && GameManagerV2.IsTurn(player.playerId))
         {
             CmdMovePanel();
         }
     }
 }
Example #3
0
 private void CmdCheckMyTurn()
 {
     myTurn = GameManagerV2.IsTurn(playerId);
 }