17 lines
372 B
C#
17 lines
372 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Body.Organ;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class OrganComponentState : ComponentState
|
|
{
|
|
public readonly EntityUid? Body;
|
|
public readonly OrganSlot? Parent;
|
|
|
|
public OrganComponentState(EntityUid? body, OrganSlot? parent)
|
|
{
|
|
Body = body;
|
|
Parent = parent;
|
|
}
|
|
}
|