Launcher.hpp 244 B

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