#ifndef SCENE_HPP #define SCENE_HPP #include class Scene { public: virtual void render(sf::RenderWindow &window) = 0; }; #endif