summaryrefslogtreecommitdiff
path: root/src/honey.h
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2020-10-25 12:56:16 -0500
committersanine-a <sanine.not@pm.me>2020-10-25 12:56:16 -0500
commitc5874a0fc256a429b682f14344fca74fd0deab3a (patch)
tree81deeffab51f4cb30f74855066b4d92a87f406e2 /src/honey.h
parent8dbfbdc929c2321f23b50754eda8fbcdba00ad03 (diff)
add basic cglm binding functions
Diffstat (limited to 'src/honey.h')
-rw-r--r--src/honey.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/honey.h b/src/honey.h
index caa92e7..8231b70 100644
--- a/src/honey.h
+++ b/src/honey.h
@@ -9,10 +9,10 @@
#include "common.h"
#include "camera/camera.h"
+#include "cglm_bindings.h"
#include "input/input.h"
#include "light/light.h"
#include "mesh/mesh.h"
-#include "model/model.h"
#include "primitives/primitives.h"
#include "shader/shader.h"
#include "texture/texture.h"
@@ -68,9 +68,4 @@ bool honey_run(lua_State* L, honey_options opts);
*/
int honey_get_callback(lua_State* L, char* callback);
-#define honey_set_resize_callback glfwSetFramebufferSizeCallback
-#define honey_set_mouse_move_callback glfwSetCursorPosCallback
-
-#define honey_quit glfwTerminate
-
#endif