Delta-v/Content.Server/GameObjects/Components/Medical/BeingClonedComponent.cs

19 lines
416 B
C#

using Content.Server.Mobs;
using Robust.Shared.GameObjects;
using Robust.Shared.ViewVariables;
namespace Content.Server.GameObjects.Components.Medical
{
[RegisterComponent]
public class BeingClonedComponent : Component
{
public override string Name => "BeingCloned";
[ViewVariables]
public Mind? Mind = default;
[ViewVariables]
public EntityUid Parent;
}
}