- HideLabel just means it won't have its name / button drawn whereas Hide will block it completely.
15 lines
357 B
C#
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; }
|
|
}
|