Files
crystall-punk-14/Content.Shared/Alert/AlertSyncEvent.cs

15 lines
334 B
C#
Raw Permalink Normal View History

2022-01-05 00:19:23 -08:00
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
2022-01-05 00:19:23 -08:00
{
public EntityUid Euid { get; }
public AlertSyncEvent(EntityUid euid)
{
Euid = euid;
}
}