2022-11-09 07:34:07 +11:00
|
|
|
namespace Content.Shared.Damage.Events;
|
2022-07-06 18:06:12 +10:00
|
|
|
|
|
|
|
|
/// <summary>
|
2023-08-08 23:19:31 +03:00
|
|
|
/// Attempting to apply stamina damage on entity.
|
2022-07-06 18:06:12 +10:00
|
|
|
/// </summary>
|
|
|
|
|
[ByRefEvent]
|
2023-08-08 23:19:31 +03:00
|
|
|
public record struct StaminaDamageOnHitAttemptEvent(bool Cancelled);
|