Files
OldThink/Content.Shared/Shuttles/UI/MapObjects/ShuttleBeaconObject.cs

11 lines
306 B
C#
Raw Normal View History

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