/// <summary>
 /// The default constructer needs the game that the computer plays on and the token that it plays
 /// </summary>
 /// <param name="ticTacToeGame"></param>
 /// <param name="ticTacToeToken"></param>
 public ComputerPlayer(TicTacToeGame ticTacToeGame, TicTacToeGame.TicTacToeToken ticTacToeToken, MainWindow mainWindow)
 {
     ComputerTicTacToeGame = ticTacToeGame;
     ComputerToken         = ticTacToeToken;
     ComputerMainWindow    = mainWindow;
 }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     // Run game
     TicTacToeGame.Run();
 }