mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-15 03:31:44 +01:00
15 lines
334 B
C#
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;
|
|
}
|
|
}
|