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