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

19 lines
432 B
C#
Raw Permalink Normal View History

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