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