diff options
Diffstat (limited to 'src/Controllers/SFMLController/SFMLController.hpp')
| -rw-r--r-- | src/Controllers/SFMLController/SFMLController.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Controllers/SFMLController/SFMLController.hpp b/src/Controllers/SFMLController/SFMLController.hpp index 94a22e3..0bb0eea 100644 --- a/src/Controllers/SFMLController/SFMLController.hpp +++ b/src/Controllers/SFMLController/SFMLController.hpp @@ -5,17 +5,22 @@ #include <string> #include <SFML/Window.hpp> #include "../../View/MainWindow.hpp" +#include "../../Model/Game.hpp" +#include "../../Helpers/Keyboard.hpp" +#include <SFML/Window/Keyboard.hpp> class SFMLController{ private: MainWindow m_MainWindow; + Game m_game; public: SFMLController(); ~SFMLController(); + kbdh::Direction waitArrowKeyPress(); void run(); }; |
