2024-10-13 00:08:01 +02:00
|
|
|
|
using MoonTools.ECS;
|
|
|
|
|
|
|
|
|
|
namespace Nerfed.Runtime.Components
|
|
|
|
|
{
|
2024-10-15 00:41:45 +02:00
|
|
|
|
public readonly record struct Root;
|
|
|
|
|
//public readonly record struct Parent;
|
|
|
|
|
//public readonly record struct PreviousParent;
|
|
|
|
|
public readonly record struct Child;
|
|
|
|
|
// Describes a relation from the child to the parent.
|
|
|
|
|
public readonly record struct ChildParentRelation;
|
2024-10-13 00:08:01 +02:00
|
|
|
|
}
|