8#ifndef URANUS_SCENEMANAGER_HPP
9#define URANUS_SCENEMANAGER_HPP
11#include "uranus/engine/components/Scene.hpp"
21 void addScene(
const std::shared_ptr<engine::Scene> &newScene);
23 void changeScene(
const std::string &sceneToSwitch);
27 const std::shared_ptr<engine::Scene> &getActualScene()
const;
30 std::string _sceneToSwitch;
31 std::shared_ptr<engine::Scene> _actualScene;
32 std::vector<std::shared_ptr<engine::Scene>> _scenes;
Definition: SceneManager.hpp:15