StationVariationHasRunComponent.cs 423 B

123456789101112
  1. using Content.Server.GameTicking.Rules;
  2. namespace Content.Server.Station.Components;
  3. /// <summary>
  4. /// Marker component for stations where procedural variation using <see cref="RoundstartStationVariationRuleSystem"/>
  5. /// has already run, so as to avoid running it again if another station is added.
  6. /// </summary>
  7. [RegisterComponent]
  8. public sealed partial class StationVariationHasRunComponent : Component
  9. {
  10. }