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