blob: 714f690834be6f707f27fe3ba7d6917aa4ff2575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | 
#pragma once
#include "SceneManager.h"
namespace crepe {
template <typename T>
void SceneManager::add_scene(const std::string & name) {
	using namespace std;
	static_assert(is_base_of<Scene, T>::value, "T must be derived from Scene");
	Scene * scene = new T(this->component_manager, name);
	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 = name;
	}
}
} // namespace crepe
 
  |