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