Exemple #1
0
 private void ComputerPlayer_BestMoveFound(Move bestMove)
 {
     CurrentBoard[bestMove.Row, bestMove.Col] = _computer;
     CurrentBoard.UpdateBoardUI();
 }