blob: 83b75968f728412cb45c678066f44f79852c2b16 (
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) = 0;
};
#endif
|