1
0

AlertSyncEvent.cs 334 B

1234567891011121314
  1. namespace Content.Shared.Alert;
  2. /// <summary>
  3. /// Raised when the AlertSystem needs alert sources to recalculate their alert states and set them.
  4. /// </summary>
  5. public sealed class AlertSyncEvent : EntityEventArgs
  6. {
  7. public EntityUid Euid { get; }
  8. public AlertSyncEvent(EntityUid euid)
  9. {
  10. Euid = euid;
  11. }
  12. }