// // Created by lukas on 04.02.22. // #ifndef OPENGLTEST_RENDERER_H #define OPENGLTEST_RENDERER_H #include "VertexArray.h" #include "IndexBuffer.h" #include "Shader.h" class Renderer { public: void render(const VertexArray& va, const IndexBuffer& ib, const Shader& s); }; #endif //OPENGLTEST_RENDERER_H