GettingAttackedAttemptEvent.cs 276 B

1234567
  1. namespace Content.Shared.Interaction.Events;
  2. /// <summary>
  3. /// Raised directed on the target entity when being attacked.
  4. /// </summary>
  5. [ByRefEvent]
  6. public record struct GettingAttackedAttemptEvent(EntityUid Attacker, EntityUid? Weapon, bool Disarm, bool Cancelled = false);