11 lines
227 B
C#
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;
|
|
} |