12 lines
241 B
C#
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;
|
|
} |