diff options
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r-- | src/game/game.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp index e7d91d6..bc37c91 100644 --- a/src/game/game.hpp +++ b/src/game/game.hpp @@ -2,17 +2,20 @@ #include "DI/auto_wirable.hpp" #include "interfaces/game.hpp" +#include "interfaces/input.hpp" #include "interfaces/scene.hpp" #include <memory> -class Game : public IGame, public AutoWirable<IGame, Game, IScene> +class Game : public IGame, public AutoWirable<IGame, Game, IScene, IInputHandler> { public: - explicit Game(std::shared_ptr<IScene> scene); + explicit Game(std::shared_ptr<IScene> scene, + std::shared_ptr<IInputHandler> input_handler); void run() override; private: std::shared_ptr<IScene> _scene; + std::shared_ptr<IInputHandler> _input_handler; }; |