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

9 lines
222 B
C#
Raw Normal View History

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