NcEngine
Hierarchy.h
Go to the documentation of this file.
1
5#pragma once
6
8
9#include <ranges>
10#include <vector>
11
12namespace nc
13{
24{
25 Entity parent;
26 std::vector<Entity> children;
27};
28} // namespace nc
Identifies an object in the registry.
Definition: Entity.h:18
Component managing an Entity's scene graph relationships.
Definition: Hierarchy.h:24