MinequackCPP/headers/renderer.h
2022-04-07 16:50:51 +03:00

16 lines
245 B
C++

#include <GLES3/gl3.h>
#include <GL/glew.h>
#include "../defs.h"
#include <GL/gl.h>
#include <GLFW/glfw3.h>
#include <GL/glut.h>
#include <math.h>
// main renderer class
class RENDERER
{
public:
void render(GLFWwindow *window);
};