16 lines
361 B
C#
16 lines
361 B
C#
using Robust.Shared.Map;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Weapons.Melee.Events;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class DisarmAttackEvent : AttackEvent
|
|
{
|
|
public NetEntity? Target;
|
|
|
|
public DisarmAttackEvent(NetEntity? target, NetCoordinates coordinates) : base(coordinates)
|
|
{
|
|
Target = target;
|
|
}
|
|
}
|