diff --git a/mario/scenes/game_scenes.hpp b/mario/scenes/game_scenes.hpp index 0c5a9a9..1c66674 100644 --- a/mario/scenes/game_scenes.hpp +++ b/mario/scenes/game_scenes.hpp @@ -9,7 +9,10 @@ extern std::mutex render_mutex; extern std::vector game_scenes; -SceneStruct createGameMainMenuScene(std::shared_ptr &renderer, bool include_restart = true, bool include_resume = true, bool transparent_background = true); +SceneStruct createGameMainMenuScene(std::shared_ptr &renderer, + bool include_restart = true, + bool include_resume = true, + bool transparent_background = true); SceneStruct createGameRetryScene(std::shared_ptr &renderer); #endif \ No newline at end of file diff --git a/mario/scenes/shared_scenes.hpp b/mario/scenes/shared_scenes.hpp index b99b715..a8c3128 100644 --- a/mario/scenes/shared_scenes.hpp +++ b/mario/scenes/shared_scenes.hpp @@ -19,6 +19,7 @@ SceneStruct createOkScene(std::shared_ptr renderer, SceneStruct createLoadScene(std::shared_ptr renderer, const std::string &path, std::function finalizer, - bool pop_at_finish = true, bool transparent_bg = true); + bool pop_at_finish = true, + bool transparent_bg = true); #endif \ No newline at end of file