2023-08-30 21:46:11 -07:00
|
|
|
using Content.Shared.Mind;
|
2023-08-28 16:53:24 -07:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Cloning.Components
|
2021-05-11 16:16:08 -07:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class BeingClonedComponent : Component
|
2021-05-11 16:16:08 -07:00
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
2023-08-28 16:53:24 -07:00
|
|
|
public MindComponent? Mind = default;
|
2021-05-11 16:16:08 -07:00
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public EntityUid Parent;
|
|
|
|
|
}
|
|
|
|
|
}
|