This commit is contained in:
Zoe Roux
2021-06-18 16:07:40 +02:00
parent 508fa89a8a
commit 000528ba14
4 changed files with 19 additions and 15 deletions
+4 -1
View File
@@ -31,6 +31,9 @@ namespace BBM
};
//! @brief The scene before the actual one. Used for back buttons.
SceneID previousScene = SplashScreen;
//! @brief The currently loaded scene
SceneID currentScene = SplashScreen;
@@ -38,6 +41,6 @@ namespace BBM
SceneID nextScene = SplashScreen;
//! @brief The list of loaded scenes.
std::unordered_map<SceneID, std::shared_ptr<WAL::Scene>> _loadedScenes = {};
std::unordered_map<SceneID, std::shared_ptr<WAL::Scene>> loadedScenes = {};
};
}