BlockGame/gl/Renderer.h

20 lines
314 B
C
Raw Normal View History

2022-02-05 20:44:31 +00:00
//
// 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