Files
tbd-station-14/Content.Server/Atmos/Monitor/Components/AtmosAlarmingComponent.cs
2022-08-20 07:36:53 -07:00

15 lines
426 B
C#

namespace Content.Server.Atmos.Monitor.Components;
[RegisterComponent]
public sealed class AtmosAlarmingComponent : Component
{
/// <summary>
/// All registered receivers in this alarmer.
/// </summary>
public HashSet<string> RegisteredReceivers = new();
// Somebody should do this someday. I'll leave it here as a reminder,
// just in case.
// public string StationAlarmMonitorFrequencyId
}