atmos alarmable visuals
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using Content.Shared.Atmos.Monitor;
|
||||
|
||||
namespace Content.Client.Atmos.Monitor;
|
||||
|
||||
[RegisterComponent]
|
||||
public sealed class AtmosAlarmableVisualsComponent : Component
|
||||
{
|
||||
[DataField("layerMap")]
|
||||
public string LayerMap { get; } = string.Empty;
|
||||
|
||||
[DataField("alarmStates")]
|
||||
public readonly Dictionary<AtmosMonitorAlarmType, string> AlarmStates = new();
|
||||
|
||||
[DataField("hideOnDepowered")]
|
||||
public readonly List<string>? HideOnDepowered;
|
||||
|
||||
// eh...
|
||||
[DataField("setOnDepowered")]
|
||||
public readonly Dictionary<string, string>? SetOnDepowered;
|
||||
}
|
||||
Reference in New Issue
Block a user