using Content.Server._NF.PublicTransit.Prototypes; using Robust.Shared.Prototypes; namespace Content.Server._NF.PublicTransit.Components; /// /// Added to a grid that is stopped at by public transit. /// [RegisterComponent, Access(typeof(PublicTransitSystem))] public sealed partial class StationTransitComponent : Component { /// /// The list of routes that will service this station and the relative stop order along that route. /// Stops are ordered in increasing value (lower numbers, earlier on the list) /// [DataField] public Dictionary, int> Routes = new(); }