1
0

ArrivalsSourceComponent.cs 317 B

123456789101112
  1. using Content.Server.Shuttles.Systems;
  2. namespace Content.Server.Shuttles.Components;
  3. /// <summary>
  4. /// Added to a designated arrivals station for players to spawn at, if enabled.
  5. /// </summary>
  6. [RegisterComponent, Access(typeof(ArrivalsSystem))]
  7. public sealed partial class ArrivalsSourceComponent : Component
  8. {
  9. }