gbarubik/inc/renderable.hpp
2023-11-26 16:09:41 -07:00

14 lines
183 B
C++

#ifndef RENDERABLE_HPP
#define RENDERABLE_HPP
#include <memory>
class Scene;
class Renderable {
public:
virtual void render(std::shared_ptr<Scene> scene_context) = 0;
};
#endif