Files
crystall-punk-14/Content.Shared/Alert/AlertState.cs

15 lines
332 B
C#
Raw Permalink Normal View History

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