Пример #1
0
 public void startGame()
 {
     //Tell the service this player is ready and to start game if all players are ready
     if (clientInfo != null)
     {
         monopolyDealService.startGame(clientInfo.getGuidID());
     }
     else
     {
         MessageBox.Show("Have not recieved guid");
     }
 }