6
StarHorizon_Public/Content.Server/Objectives/Components/EscapeShuttleConditionComponent.cs
2025-08-13 15:03:01 +03:00

12 lines
351 B
C#

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