#include "game.hpp" #include #include Game::Game(std::shared_ptr scene) : _scene(std::move(scene)) {} void Game::run() { _scene->enter(); std::this_thread::sleep_for(std::chrono::seconds(3)); _scene->leave(); }