Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
15 lines
305 B
C#
15 lines
305 B
C#
using Content.Server.Mind;
|
|
|
|
namespace Content.Server.Cloning.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class BeingClonedComponent : Component
|
|
{
|
|
[ViewVariables]
|
|
public MindComponent? Mind = default;
|
|
|
|
[ViewVariables]
|
|
public EntityUid Parent;
|
|
}
|
|
}
|