Files
OldThink/Content.Shared/Alert/AlertSyncEvent.cs

17 lines
368 B
C#
Raw Normal View History

2022-01-05 00:19:23 -08:00
using Robust.Shared.GameObjects;
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;
}
}