Files
tbd-station-14/Content.Server/Actions/Events/DisarmAttemptEvent.cs
2022-02-10 15:15:06 -07:00

16 lines
419 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.Actions.Events
{
public class DisarmAttemptEvent : CancellableEntityEventArgs
{
public readonly EntityUid TargetUid;
public readonly EntityUid DisarmerUid;
public DisarmAttemptEvent(EntityUid targetUid, EntityUid disarmerUid)
{
TargetUid = targetUid;
DisarmerUid = disarmerUid;
}
}
}