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