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

CanOverlordSpawn() public method

Indicates whether the overlord can spawn on a space
public CanOverlordSpawn ( Point point ) : bool
point Point /// The point ///
return bool
        public bool CanOverlordSpawn(Point point)
        {
            Contract.Requires(point.X >= 0 && point.Y >= 0 && point.X < Width && point.Y < Height);
            if (boardChanged)
            {
                UpdateCanSpawn();
            }
            return canSpawn[point.X, point.Y];
        }