Beispiel #1
0
 public TicTacToeGame()
 {
     boardState         = new TicTacToeBoardState();
     playing            = true;
     currentPlayer      = 1;
     filledSquaresCount = 0;
 }
Beispiel #2
0
 public TicTacToeBoardState(TicTacToeBoardState state)
 {
     SetBoard(state.Board);
 }