Files
OldThink/Content.Shared/Alert/AlertState.cs

14 lines
286 B
C#
Raw Normal View History

2022-01-05 00:19:23 -08:00
using Robust.Shared.Serialization;
namespace Content.Shared.Alert;
[Serializable, NetSerializable]
public struct AlertState
{
public short? Severity;
public (TimeSpan, TimeSpan)? Cooldown;
public bool AutoRemove;
public bool ShowCooldown;
2022-01-05 00:19:23 -08:00
public AlertType Type;
}