Files
OldThink/Content.Shared/AlertLevel/AlertLevelDisplayComponent.cs

9 lines
222 B
C#
Raw Permalink Normal View History

2022-05-17 21:05:31 -07:00
namespace Content.Shared.AlertLevel;
[RegisterComponent]
public sealed partial class AlertLevelDisplayComponent : Component
2022-05-17 21:05:31 -07:00
{
[DataField("alertVisuals")]
public Dictionary<string, string> AlertVisuals = new();
2022-05-17 21:05:31 -07:00
}