aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/SceneManager.hpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-24 19:00:28 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-24 19:00:28 +0100
commitfa283385d43030eca4833c1992da99e472bb5a0a (patch)
tree105e8427f75fa138ccf1f2b8990d0dab4d9cb0bb /src/crepe/api/SceneManager.hpp
parent0da788561f51215262a4c563853d2845ba1d3876 (diff)
parent1a56d7dcbf0c7375c2f0b1bb2dcd2b108a489fa8 (diff)
Merge branch 'max/scenes' of github.com:lonkaars/crepe
Diffstat (limited to 'src/crepe/api/SceneManager.hpp')
-rw-r--r--src/crepe/api/SceneManager.hpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/crepe/api/SceneManager.hpp b/src/crepe/api/SceneManager.hpp
index 94e5946..5c8e417 100644
--- a/src/crepe/api/SceneManager.hpp
+++ b/src/crepe/api/SceneManager.hpp
@@ -4,13 +4,17 @@
namespace crepe {
-template <typename T>
-void SceneManager::add_scene() {
+template <typename T, typename... Args>
+void SceneManager::add_scene(Args &&... args) {
using namespace std;
static_assert(is_base_of<Scene, T>::value, "T must be derived from Scene");
- Scene * scene = new T(this->component_manager);
- this->scenes.emplace_back(unique_ptr<Scene>(scene));
+ Scene * scene = new T(std::forward<Args>(args)...);
+ unique_ptr<Scene> unique_scene(scene);
+
+ unique_scene->component_manager = this->component_manager;
+
+ this->scenes.emplace_back(std::move(unique_scene));
// The first scene added, is the one that will be loaded at the beginning
if (next_scene.empty()) {