2022-08-23 15:00:52 -07:00
|
|
|
using Content.Shared.Atmos.Monitor;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Atmos.Monitor;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class AtmosAlarmableVisualsComponent : Component
|
2022-08-23 15:00:52 -07:00
|
|
|
{
|
|
|
|
|
[DataField("layerMap")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public string LayerMap { get; private set; } = string.Empty;
|
2022-08-23 15:00:52 -07:00
|
|
|
|
|
|
|
|
[DataField("alarmStates")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public Dictionary<AtmosAlarmType, string> AlarmStates = new();
|
2022-08-23 15:00:52 -07:00
|
|
|
|
|
|
|
|
[DataField("hideOnDepowered")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public List<string>? HideOnDepowered;
|
2022-08-23 15:00:52 -07:00
|
|
|
|
|
|
|
|
// eh...
|
|
|
|
|
[DataField("setOnDepowered")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public Dictionary<string, string>? SetOnDepowered;
|
2022-08-23 15:00:52 -07:00
|
|
|
}
|