diff options
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(); + +}; |
