DisarmAttackEvent.cs 361 B

123456789101112131415
  1. using Robust.Shared.Map;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Weapons.Melee.Events;
  4. [Serializable, NetSerializable]
  5. public sealed class DisarmAttackEvent : AttackEvent
  6. {
  7. public NetEntity? Target;
  8. public DisarmAttackEvent(NetEntity? target, NetCoordinates coordinates) : base(coordinates)
  9. {
  10. Target = target;
  11. }
  12. }