2021-05-11 16:16:08 -07:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Cloning.Components
|
2021-05-11 16:16:08 -07:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class BeingClonedComponent : Component
|
2021-05-11 16:16:08 -07:00
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
2021-06-09 22:19:39 +02:00
|
|
|
public Mind.Mind? Mind = default;
|
2021-05-11 16:16:08 -07:00
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public EntityUid Parent;
|
|
|
|
|
}
|
|
|
|
|
}
|