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

16 lines
465 B
C#

using Content.Server.StationEvents.Events;
using Content.Server.AlertLevel;
using Robust.Shared.Prototypes;
namespace Content.Server.StationEvents.Components;
[RegisterComponent, Access(typeof(AlertLevelInterceptionRule))]
public sealed partial class AlertLevelInterceptionRuleComponent : Component
{
/// <summary>
/// Alert level to set the station to when the event starts.
/// </summary>
[DataField]
public string AlertLevel = "blue";
}