blob: 5c8e417667d55b9d67db57c550149c1f5bc41373 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | #pragma once
#include "SceneManager.h"
namespace crepe {
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(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()) {
		next_scene = scene->get_name();
	}
}
} // namespace crepe
 |