Files
tbd-station-14/Content.Server/GameObjects/Components/Medical/BeingClonedComponent.cs
ShadowCommander c2d66723a3 Cloning rework (#3808)
* Fix cloning

* Fix cloning after clone dies and remove unneeded code

* Fix ignored

Co-authored-by: Silver <silvertorch5@gmail.com>
2021-05-11 16:16:08 -07:00

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