diff options
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r-- | src/game/game.hpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp index 4c7e5e1..6abb349 100644 --- a/src/game/game.hpp +++ b/src/game/game.hpp @@ -2,15 +2,17 @@ #include "DI/auto_wirable.hpp" #include "interfaces/game.hpp" -#include "interfaces/vector2.hpp" +#include "interfaces/scene.hpp" -class Game : public IGame, public AutoWirable<IGame, Game, IVector2Factory> +#include <memory> + +class Game : public IGame, public AutoWirable<IGame, Game, IScene> { public: - explicit Game(IVector2Factory vector2_factory); + explicit Game(const std::shared_ptr<IScene> &scene); void run() override; private: - IVector2Factory _vector2_factory; + const std::shared_ptr<IScene> &_scene; }; |