2023-05-14 13:15:18 +10:00
|
|
|
namespace Content.Shared.Weapons.Melee.Events;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raised directed on a weapon when attempt a melee attack.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ByRefEvent]
|
2024-02-08 18:44:02 +09:00
|
|
|
public record struct AttemptMeleeEvent(bool Cancelled, string? Message, EntityUid? User = null); // WD EDIT
|