2024-03-28 01:48:37 +01:00
|
|
|
namespace Content.Shared.Body.Part;
|
2022-11-13 22:34:26 +01:00
|
|
|
|
|
|
|
|
[ByRefEvent]
|
2024-03-28 01:48:37 +01:00
|
|
|
public readonly record struct BodyPartAddedEvent(string Slot, Entity<BodyPartComponent> Part);
|
2022-11-13 22:34:26 +01:00
|
|
|
|
|
|
|
|
[ByRefEvent]
|
2024-03-28 01:48:37 +01:00
|
|
|
public readonly record struct BodyPartRemovedEvent(string Slot, Entity<BodyPartComponent> Part);
|