diff options
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 c63ab2f..1328a5f 100644 --- a/src/honey.c +++ b/src/honey.c @@ -82,6 +82,9 @@ bool honey_setup(lua_State** L) honey_setup_primitives(*L); lua_setfield(*L, -2, "primitives"); + honey_setup_texture(*L); + lua_setfield(*L, -2, "texture"); + lua_pushcfunction(*L, honey_exit); lua_setfield(*L, -2, "exit"); |