Files
tbd-station-14/Content.Shared/Interaction/Events/MeleeAttackAttemptEvent.cs
2022-05-22 12:31:46 +10:00

17 lines
353 B
C#

namespace Content.Shared.Interaction.Events;
/// <summary>
/// Raised on directed a weapon when being used in a melee attack.
/// </summary>
[ByRefEvent]
public struct MeleeAttackAttemptEvent
{
public bool Cancelled = false;
public readonly EntityUid User;
public MeleeAttackAttemptEvent(EntityUid user)
{
User = user;
}
}