diff options
Diffstat (limited to 'src/gl/honey_gl.h')
-rw-r--r-- | src/gl/honey_gl.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gl/honey_gl.h b/src/gl/honey_gl.h new file mode 100644 index 0000000..fc57037 --- /dev/null +++ b/src/gl/honey_gl.h @@ -0,0 +1,18 @@ +#ifndef HONEY_GL_H +#define HONEY_GL_H + +#include <stdbool.h> + +#ifdef UNIT_TEST +#include "test/mock/mock_GLFW.h" +#else +#include "glad/glad.h" +#include <GLFW/glfw3.h> +#endif + +extern int honey_gl_window_ref; + +bool honey_gl_setup(); + + +#endif |