1
0

AlertState.cs 332 B

1234567891011121314
  1. using Robust.Shared.Prototypes;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Alert;
  4. [Serializable, NetSerializable]
  5. public struct AlertState
  6. {
  7. public short? Severity;
  8. public (TimeSpan, TimeSpan)? Cooldown;
  9. public bool AutoRemove;
  10. public bool ShowCooldown;
  11. public ProtoId<AlertPrototype> Type;
  12. }