Files
tbd-station-14/Content.Shared/Alert/AlertState.cs
2022-01-05 19:19:23 +11:00

12 lines
241 B
C#

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