Drones (#6448)
This commit is contained in:
15
Content.Server/Actions/Events/DisarmAttemptEvent.cs
Normal file
15
Content.Server/Actions/Events/DisarmAttemptEvent.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user