public void setSquare(int collum, int row, eSquare newSquareType) { currentBoard[collum, row] = newSquareType; }
public BoardState(eSquare[,] currentBoard) { currentPlayerTurn = ePlayer.Naught; this.currentBoard = currentBoard; calculateBoardScore(); }