blob: 7f72e51f3a4d6d520ea593823a096c33b959e1f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef RENDERABLE_HPP
#define RENDERABLE_HPP
#include <memory>
class Scene;
class Renderable {
public:
virtual void render(std::shared_ptr<Scene> scene_context);
};
#endif
|