public static OthelloBoard CreateStartingBoard() { OthelloBoard board = new OthelloBoard(SquareState.Black); board.SetToStartingPosition(); return(board); }