#include #include #include #include "../../View/MainWindow.hpp" #include "../../Model/Game.hpp" #include "../../Helpers/Keyboard.hpp" #include class SFMLController{ private: MainWindow m_MainWindow; Game m_game; public: SFMLController(); ~SFMLController(); kbdh::Direction waitArrowKeyPress(); void run(); };