1 2 3 4 5 6 7 8 9 10 11 12
#ifndef SCENE_HPP #define SCENE_HPP #include <SFML/Graphics.hpp> class Scene { public: virtual void render(sf::RenderWindow &window) = 0; }; #endif