Beispiel #1
0
 /// <summary>
 /// Creates a new <see cref="BoardGrid"/>.
 /// </summary>
 /// <param name="boardSize">The size of the board.</param>
 internal ReadOnlyBoardGrid(BoardSize boardSize)
     : this(boardSize.Width, boardSize.Height)
 {
 }
Beispiel #2
0
 /// <inheritdocs/>
 internal BoardGrid(BoardSize boardSize)
     : base(boardSize)
 {
 }