max
91b4f5fafb
- started working on an editor hierarchy window - testing filters - testing parent child relations without system - testing root component - thinking about how to get all entities that are not a child, but also don't have an other identifying component
11 lines
354 B
C#
11 lines
354 B
C#
using MoonTools.ECS;
|
|
|
|
namespace Nerfed.Runtime.Components
|
|
{
|
|
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;
|
|
} |