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