mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
17 lines
353 B
C#
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;
|
|
}
|
|
}
|