9 lines
360 B
C#
9 lines
360 B
C#
using Content.Shared.Body.Part;
|
|
|
|
namespace Content.Shared._Shitmed.Medical.Surgery.Conditions;
|
|
|
|
/// <summary>
|
|
/// Raised on the entity that is receiving surgery.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public record struct SurgeryValidEvent(EntityUid Body, EntityUid Part, bool Cancelled = false, BodyPartType PartType = default, BodyPartSymmetry? Symmetry = default); |