Files
tbd-station-14/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs
2023-05-14 13:15:18 +10:00

8 lines
224 B
C#

namespace Content.Shared.Weapons.Melee.Events;
/// <summary>
/// Raised directed on a weapon when attempt a melee attack.
/// </summary>
[ByRefEvent]
public record struct AttemptMeleeEvent(bool Cancelled, string? Message);