1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-08 23:23:38 +00:00
lovr/src/glfw.h
2016-07-15 20:47:38 -07:00

12 lines
152 B
C

#ifdef __APPLE__
#define GLFW_INCLUDE_GLCOREARB
#elif WIN32
#include <GL/glew.h>
#endif
#include <GLFW/glfw3.h>
GLFWwindow* window;
void initGlfw();