diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-03 14:19:30 +0200 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-03 14:19:30 +0200 |
| commit | ce3f721e16c779d519c04469e49a65f60546ab8d (patch) | |
| tree | 9ebe9613d2393823079942517681306df8e6ff70 /src/Controllers/SFMLController/SFMLController.hpp | |
| parent | ddaf5ba3ba3954c2b8a9926adbd3a066d8f0316c (diff) | |
Add first version of SFMLController and View class
Diffstat (limited to 'src/Controllers/SFMLController/SFMLController.hpp')
| -rw-r--r-- | src/Controllers/SFMLController/SFMLController.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Controllers/SFMLController/SFMLController.hpp b/src/Controllers/SFMLController/SFMLController.hpp new file mode 100644 index 0000000..94a22e3 --- /dev/null +++ b/src/Controllers/SFMLController/SFMLController.hpp @@ -0,0 +1,21 @@ + + + +#include <iostream> +#include <string> +#include <SFML/Window.hpp> +#include "../../View/MainWindow.hpp" + +class SFMLController{ + + private: + MainWindow m_MainWindow; + + + public: + SFMLController(); + ~SFMLController(); + + void run(); + +}; |
