summaryrefslogtreecommitdiff
path: root/src/Controllers/SFMLController/SFMLController.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Controllers/SFMLController/SFMLController.hpp')
-rw-r--r--src/Controllers/SFMLController/SFMLController.hpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/Controllers/SFMLController/SFMLController.hpp b/src/Controllers/SFMLController/SFMLController.hpp
index 0bb0eea..0847268 100644
--- a/src/Controllers/SFMLController/SFMLController.hpp
+++ b/src/Controllers/SFMLController/SFMLController.hpp
@@ -1,26 +1,30 @@
-
+#ifndef __SFMLCONTROLLER__
+#define __SFMLCONTROLLER__
#include <iostream>
#include <string>
+
#include <SFML/Window.hpp>
+#include <SFML/Window/Keyboard.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();
};
+
+#endif