Files
tbd-station-14/Content.Shared/Shuttles/UI/MapObjects/IMapObject.cs
metalgearsloth a41772a006 Shuttle map IFF tweaks (#25897)
- HideLabel just means it won't have its name / button drawn whereas Hide will block it completely.
2024-03-11 13:11:46 +11:00

15 lines
357 B
C#

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; }
}