Added the basics for a scene explorer in ImGui

This commit is contained in:
2022-07-10 15:52:25 +02:00
parent 6a2e8d3b2f
commit e31fd036ea
4 changed files with 41 additions and 22 deletions

View File

@ -6,7 +6,7 @@
class Node {
public:
Node(const std::string& name);
const std::string& name;
std::string name;
Node* parent;
std::vector<Node*> children;