* Fix test * Kill float accumulators * Use entity proxy methods * DataField auto name generation where possible * Kill comp properties * Clean up server comps * Make events record structs * Clean up shared body code * Clean up server body code * Rename organ events to be same names as in med refactor
8 lines
256 B
C#
8 lines
256 B
C#
namespace Content.Shared.Body.Part;
|
|
|
|
[ByRefEvent]
|
|
public readonly record struct BodyPartAddedEvent(string Slot, Entity<BodyPartComponent> Part);
|
|
|
|
[ByRefEvent]
|
|
public readonly record struct BodyPartRemovedEvent(string Slot, Entity<BodyPartComponent> Part);
|