#include "SceneManager.h" using namespace crepe; using namespace std; // Add a new concrete scene to the scene manager template void SceneManager::add_scene(string name) { static_assert(is_base_of::value, "T must be derived from Scene"); scenes.emplace_back(make_unique(name)); }