Descent.Model.Board.Board.IsSquareWithinBoard C# (CSharp) Method

IsSquareWithinBoard() public method

Determines whether the point is within the board, and if there is a square on that point.
public IsSquareWithinBoard ( Point point ) : bool
point Point /// The point. ///
return bool
        public bool IsSquareWithinBoard(Point point)
        {
            Contract.Requires(point != null);
            return IsSquareWithinBoard(point.X, point.Y);
        }

Same methods

Board::IsSquareWithinBoard ( int x, int y ) : bool