Launcher.hpp 180 B

12345678910111213
  1. #pragma once
  2. #include <SFML/Graphics.hpp>
  3. #include <SFML/Audio.hpp>
  4. class Launcher {
  5. public:
  6. Launcher();
  7. void launch();
  8. private:
  9. bool m_running;
  10. sf::RenderWindow m_window;
  11. };