using Content.Shared.Alert;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization;
namespace Content.Shared.Mobs.Events;
///
/// Event for allowing the interrupting and change of the mob threshold severity alert
///
[Serializable, NetSerializable]
public sealed class BeforeAlertSeverityCheckEvent(ProtoId currentAlert, short severity) : EntityEventArgs
{
public bool CancelUpdate = false;
public ProtoId CurrentAlert = currentAlert;
public short Severity = severity;
}