aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/SceneManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/SceneManager.hpp')
-rw-r--r--src/crepe/api/SceneManager.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/crepe/api/SceneManager.hpp b/src/crepe/api/SceneManager.hpp
deleted file mode 100644
index 94e5946..0000000
--- a/src/crepe/api/SceneManager.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-#include "SceneManager.h"
-
-namespace crepe {
-
-template <typename T>
-void SceneManager::add_scene() {
- 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));
-
- // The first scene added, is the one that will be loaded at the beginning
- if (next_scene.empty()) {
- next_scene = scene->get_name();
- }
-}
-
-} // namespace crepe