* initial commit * reapply 38126 * fix rootable * someone missed an important minus sign here * try this * fix * fix * reenable crit hits * cleanup * fix status time dirtying * fix * camelCase
8 lines
219 B
C#
8 lines
219 B
C#
namespace Content.Shared.Body.Events;
|
|
|
|
/// <summary>
|
|
/// Raised when a body gets gibbed, before it is deleted.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly record struct BeingGibbedEvent(HashSet<EntityUid> GibbedParts);
|