#pragma once #include #include using score_t = unsigned; class Launcher { public: Launcher(); void launch(); private: bool m_running; score_t m_highScore; sf::RenderWindow m_window; };