コード例 #1
0
ファイル: BoardState.cs プロジェクト: ModerateWinGuy/ADS
 public void setSquare(int collum, int row, eSquare newSquareType)
 {
     currentBoard[collum, row] = newSquareType;
 }
コード例 #2
0
ファイル: BoardState.cs プロジェクト: ModerateWinGuy/ADS
 public BoardState(eSquare[,] currentBoard)
 {
     currentPlayerTurn = ePlayer.Naught;
     this.currentBoard = currentBoard;
     calculateBoardScore();
 }
コード例 #3
0
ファイル: BoardState.cs プロジェクト: ModerateWinGuy/ADS
 public void setSquare(int collum, int row, eSquare newSquareType)
 {
     currentBoard[collum, row] = newSquareType;
 }