- HideLabel just means it won't have its name / button drawn whereas Hide will block it completely.
11 lines
300 B
C#
11 lines
300 B
C#
using Robust.Shared.Map;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Shuttles.UI.MapObjects;
|
|
|
|
[Serializable, NetSerializable]
|
|
public record struct ShuttleExclusionObject(NetCoordinates Coordinates, float Range, string Name = "") : IMapObject
|
|
{
|
|
public bool HideButton => false;
|
|
}
|