StationArrivalsComponent.cs 484 B

12345678910111213141516
  1. using Content.Server.Shuttles.Systems;
  2. using Robust.Shared.Utility;
  3. namespace Content.Server.Shuttles.Components;
  4. /// <summary>
  5. /// Added to a station that is available for arrivals shuttles.
  6. /// </summary>
  7. [RegisterComponent, Access(typeof(ArrivalsSystem))]
  8. public sealed partial class StationArrivalsComponent : Component
  9. {
  10. [DataField("shuttle")]
  11. public EntityUid Shuttle;
  12. [DataField("shuttlePath")] public ResPath ShuttlePath = new("/Maps/Shuttles/arrivals.yml");
  13. }