1
0

EscapeShuttleConditionComponent.cs 351 B

1234567891011
  1. using Content.Server.Objectives.Systems;
  2. namespace Content.Server.Objectives.Components;
  3. /// <summary>
  4. /// Requires that the player is on the emergency shuttle's grid when docking to CentCom.
  5. /// </summary>
  6. [RegisterComponent, Access(typeof(EscapeShuttleConditionSystem))]
  7. public sealed partial class EscapeShuttleConditionComponent : Component
  8. {
  9. }