Ejemplo n.º 1
0
        public static OthelloBoard CreateStartingBoard()
        {
            OthelloBoard board = new OthelloBoard(SquareState.Black);

            board.SetToStartingPosition();
            return(board);
        }