11 lines
227 B
C#
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;
|
|
}
|