Files
tbd-station-14/Content.Shared/Alert/ClickAlertEvent.cs
2024-05-23 22:43:04 -04:00

19 lines
432 B
C#

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