diff options
author | sanine-a <sanine.not@pm.me> | 2020-10-25 12:56:16 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-10-25 12:56:16 -0500 |
commit | c5874a0fc256a429b682f14344fca74fd0deab3a (patch) | |
tree | 81deeffab51f4cb30f74855066b4d92a87f406e2 /src/honey.c | |
parent | 8dbfbdc929c2321f23b50754eda8fbcdba00ad03 (diff) |
add basic cglm binding functions
Diffstat (limited to 'src/honey.c')
-rw-r--r-- | src/honey.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/honey.c b/src/honey.c index da55ca6..73fb285 100644 --- a/src/honey.c +++ b/src/honey.c @@ -70,6 +70,9 @@ bool honey_setup(lua_State** L) honey_setup_input(*L); lua_setfield(*L, -2, "input"); + honey_setup_cglm(*L); + lua_setfield(*L, -2, "cglm"); + lua_pushcfunction(*L, honey_exit); lua_setfield(*L, -2, "exit"); |