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

20 lines
419 B
C#
Raw Normal View History

2022-01-05 00:19:23 -08:00
using System;
using Robust.Shared.GameObjects;
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
2022-01-05 00:19:23 -08:00
{
public readonly AlertType Type;
public ClickAlertEvent(AlertType alertType)
{
Type = alertType;
}
}