diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-04 16:55:32 +0200 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-04 16:55:32 +0200 |
| commit | 1570bc62105de67871e98599506f7bee6f1b400d (patch) | |
| tree | 4c3db08b701958442bae22f20ba43d95037ad926 /src/Controllers/SFMLController/SFMLController.hpp | |
| parent | 8488827025f25743ef18eca8c55cfdff5767341b (diff) | |
| parent | a1c9b58c29746793f00520d46e1397abe2b0e711 (diff) | |
apply SFML develop change
Diffstat (limited to 'src/Controllers/SFMLController/SFMLController.hpp')
| -rw-r--r-- | src/Controllers/SFMLController/SFMLController.hpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Controllers/SFMLController/SFMLController.hpp b/src/Controllers/SFMLController/SFMLController.hpp new file mode 100644 index 0000000..0bb0eea --- /dev/null +++ b/src/Controllers/SFMLController/SFMLController.hpp @@ -0,0 +1,26 @@ + + + +#include <iostream> +#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(); + +}; |
