aboutsummaryrefslogtreecommitdiff
path: root/src/game/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r--src/game/game.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp
index 6abb349..e7d91d6 100644
--- a/src/game/game.hpp
+++ b/src/game/game.hpp
@@ -9,10 +9,10 @@
class Game : public IGame, public AutoWirable<IGame, Game, IScene>
{
public:
- explicit Game(const std::shared_ptr<IScene> &scene);
+ explicit Game(std::shared_ptr<IScene> scene);
void run() override;
private:
- const std::shared_ptr<IScene> &_scene;
+ std::shared_ptr<IScene> _scene;
};