2022-01-05 00:19:23 -08:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Alert;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public struct AlertState
|
|
|
|
|
{
|
|
|
|
|
public short? Severity;
|
|
|
|
|
public (TimeSpan, TimeSpan)? Cooldown;
|
2024-03-02 15:07:05 +01:00
|
|
|
public bool AutoRemove;
|
|
|
|
|
public bool ShowCooldown;
|
2022-01-05 00:19:23 -08:00
|
|
|
public AlertType Type;
|
2024-03-02 15:07:05 +01:00
|
|
|
}
|