2022-02-10 17:15:06 -05:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Actions.Events
|
|
|
|
|
{
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class DisarmAttemptEvent : CancellableEntityEventArgs
|
2022-02-10 17:15:06 -05:00
|
|
|
{
|
|
|
|
|
public readonly EntityUid TargetUid;
|
|
|
|
|
public readonly EntityUid DisarmerUid;
|
|
|
|
|
public DisarmAttemptEvent(EntityUid targetUid, EntityUid disarmerUid)
|
|
|
|
|
{
|
|
|
|
|
TargetUid = targetUid;
|
|
|
|
|
DisarmerUid = disarmerUid;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|