Chess.Domain.Board.EmptySquare C# (CSharp) Method

EmptySquare() private static method

private static EmptySquare ( int column, int row ) : Square
column int
row int
return Chess.Data.Entities.Square
        private static Square EmptySquare(int column, int row)
        {
            return NewSquare(column, row, null);
        }