mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 15:38:52 +03:00
16 lines
334 B
C#
16 lines
334 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Server.Cloning.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed class BeingClonedComponent : Component
|
|
{
|
|
[ViewVariables]
|
|
public Mind.Mind? Mind = default;
|
|
|
|
[ViewVariables]
|
|
public EntityUid Parent;
|
|
}
|
|
}
|