ARCed.Controls.ImageSelectXnaPanel.GetTileAtPoint C# (CSharp) Method

GetTileAtPoint() public method

Gets the ID of the tile at the specified Point.
public GetTileAtPoint ( Point point ) : int
point System.Drawing.Point Coordinates to check, in pixels.
return int
        public int GetTileAtPoint(Point point)
        {
            return this.GetTileAtPoint(point.X, point.Y);
        }

Same methods

ImageSelectXnaPanel::GetTileAtPoint ( int x, int y ) : int