gbarubik/inc/renderable.hpp
2023-11-24 18:19:42 -07:00

14 lines
179 B
C++

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