Files
tbd-station-14/Content.Server/Damage/Events/StaminaDamageOnHitAttemptEvent.cs
2022-07-06 18:06:12 +10:00

11 lines
227 B
C#

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;
}