fish-station/Content.Shared/Body/Organ/OrganComponentState.cs
2022-10-22 15:46:28 -07:00

16 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;
}
}