using Robust.Shared.Prototypes; using Robust.Shared.Serialization; namespace Content.Shared.Alert; /// /// A message that calls the click interaction on a alert /// [Serializable, NetSerializable] public sealed class ClickAlertEvent : EntityEventArgs { public readonly ProtoId Type; public ClickAlertEvent(ProtoId alertType) { Type = alertType; } }