Beispiel #1
0
 private void ClientTurn(MakeTurnMessage msg)
 {
     gameBoard.MarkCell(msg.index, msg.whoseTurnWas);
     gameBoard.Lock = playerRoundSign == msg.whoseTurnWas;
     ShowInfoText(gameBoard.Lock ? "Enemy turn" : "Your turn");
 }