Files

15 lines
357 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 record struct AlertState
2022-01-05 00:19:23 -08:00
{
public short? Severity;
public (TimeSpan startTime, TimeSpan endTime)? Cooldown;
public bool AutoRemove;
public bool ShowCooldown;
public ProtoId<AlertPrototype> Type;
}