diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-22 17:05:00 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:59 +0200 |
commit | 7de921836587cdc359c2c4b84ed6446ada16c008 (patch) | |
tree | c4ec20b4769817c41ce7d939956da297bf787597 /src/game/game.hpp | |
parent | 723ea6535b4c4e5605e5592137a898d6ffa458c1 (diff) |
refactor: remove window class
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r-- | src/game/game.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp index fac9061..c765312 100644 --- a/src/game/game.hpp +++ b/src/game/game.hpp @@ -7,7 +7,6 @@ #include "interfaces/status_manager.hpp" #include "interfaces/statusline.hpp" #include "interfaces/statusline_subscriber_adapter.hpp" -#include "interfaces/window.hpp" #include <memory> @@ -15,7 +14,6 @@ class Game : public IGame { public: Game( - std::shared_ptr<IWindow> window, std::shared_ptr<IScene> scene, std::shared_ptr<ICursorController> cursor_controller, std::shared_ptr<IStatusLine> statusline, @@ -34,7 +32,6 @@ public: -> std::unordered_map<char, std::shared_ptr<ICommand>> override; private: - std::shared_ptr<IWindow> _window; std::shared_ptr<IScene> _scene; std::shared_ptr<ICursorController> _cursor_controller; std::shared_ptr<IStatusLine> _statusline; |