diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-03 20:23:43 +0200 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-03 20:23:43 +0200 |
| commit | 6b37ae07ffe0d233b7ff54558d7d39e3e9035e0d (patch) | |
| tree | 1d9cdec6c0c6b6477a8fd965456a176be376671a /src/Controllers/SFMLController/SFMLController.hpp | |
| parent | 1bf3038477b05cf9ead455116ef8125c123a4aae (diff) | |
Add font and fast programming to test the game
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(); }; |
