Example #1
0
 public void checkWinState(bool isBlacksTurn, GameBoardTs board)
 {
     if (board.getWinState(isBlacksTurn, board))
     {
         if (isBlacksTurn)
         {
             // winLoseText.text = "Black Wins";
         }
         else
         {
             //winLoseText.text = "Red Wins";
         }
     }
 }