using Content.Server.Shuttles.Systems; using Robust.Shared.Utility; namespace Content.Server.Shuttles.Components; /// /// Added to a station that is available for arrivals shuttles. /// [RegisterComponent, Access(typeof(ArrivalsSystem))] public sealed partial class StationArrivalsComponent : Component { [DataField("shuttle")] public EntityUid Shuttle; [DataField("shuttlePath")] public ResPath ShuttlePath = new("/Maps/Shuttles/arrivals.yml"); }