Added scene related things

This commit is contained in:
2022-04-23 22:46:06 +03:00
parent 3c721273c0
commit 50d032418e
27 changed files with 1177 additions and 16 deletions
+16
View File
@@ -0,0 +1,16 @@
#pragma once
#include <memory>
#include "scene_tree.h"
#include "timeline.h"
BEGIN_NAMESPACE
struct scene {
scene();
std::shared_ptr<scene_tree> tree;
std::shared_ptr<timeline> animation;
};
END_NAMESPACE