14 lines
301 B
C#
14 lines
301 B
C#
using Content.Shared.Sound;
|
|
|
|
namespace Content.Server.Damage.Events;
|
|
|
|
/// <summary>
|
|
/// Attempting to apply stamina damage on a melee hit to an entity.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public struct StaminaDamageOnHitAttemptEvent
|
|
{
|
|
public bool Cancelled;
|
|
public SoundSpecifier? HitSoundOverride;
|
|
}
|