21 lines
546 B
C#
21 lines
546 B
C#
using Content.Shared.Atmos.Monitor;
|
|
|
|
namespace Content.Client.Atmos.Monitor;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class AtmosAlarmableVisualsComponent : Component
|
|
{
|
|
[DataField("layerMap")]
|
|
public string LayerMap { get; private set; } = string.Empty;
|
|
|
|
[DataField("alarmStates")]
|
|
public Dictionary<AtmosAlarmType, string> AlarmStates = new();
|
|
|
|
[DataField("hideOnDepowered")]
|
|
public List<string>? HideOnDepowered;
|
|
|
|
// eh...
|
|
[DataField("setOnDepowered")]
|
|
public Dictionary<string, string>? SetOnDepowered;
|
|
}
|