Files
tbd-station-14/Content.Shared/Alert/AlertSyncEvent.cs
2022-05-13 17:59:03 +10:00

15 lines
334 B
C#

namespace Content.Shared.Alert;
/// <summary>
/// Raised when the AlertSystem needs alert sources to recalculate their alert states and set them.
/// </summary>
public sealed class AlertSyncEvent : EntityEventArgs
{
public EntityUid Euid { get; }
public AlertSyncEvent(EntityUid euid)
{
Euid = euid;
}
}