Files
tbd-station-14/Content.Shared/Alert/ClickAlertEvent.cs
2022-05-13 17:59:03 +10:00

18 lines
372 B
C#

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 AlertType Type;
public ClickAlertEvent(AlertType alertType)
{
Type = alertType;
}
}