MinequackCPP/headers/renderer.h

16 lines
245 B
C
Raw Normal View History

2022-04-07 13:50:51 +00:00
#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);
};