Files
tbd-station-14/Content.Shared/Alert/AlertState.cs
2022-05-13 17:59:03 +10:00

11 lines
227 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Alert;
[Serializable, NetSerializable]
public struct AlertState
{
public short? Severity;
public (TimeSpan, TimeSpan)? Cooldown;
public AlertType Type;
}