Files
tbd-station-14/Content.Shared/Alert/AlertState.cs
2024-05-23 22:43:04 -04:00

15 lines
332 B
C#

using Robust.Shared.Prototypes;
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;
public ProtoId<AlertPrototype> Type;
}