aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Scene.hpp
blob: 2b19d31ed26cb2b12b633cd2b465cf53e07bcbdc (plain)
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