namespace Content.Shared.Shuttles.UI.MapObjects;
///
/// Abstract map object representing a grid, beacon etc for use on the map screen.
///
public interface IMapObject
{
string Name { get; }
///
/// Should we hide the button from being shown (AKA just draw it).
///
bool HideButton { get; }
}