예제 #1
0
 public int GetScore()
 {
     return(OthelloGame.GetGameInstance().GetBoard().GetScore(this.playerColor));
 }
예제 #2
0
 public bool MakeMove(int row, int col)
 {
     return(OthelloGame.GetGameInstance().GetBoard().PlacePiece(new Piece(this.playerColor), row, col));
 }