8 lines
266 B
C#
8 lines
266 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;
|