diff options
Diffstat (limited to 'nerv.c')
-rw-r--r-- | nerv.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#include "lua.h" +#include "lauxlib.h" +#include "lualib.h" + +extern int nerv_point_init(lua_State *L); + +LUALIB_API int luaopen_libnerv(lua_State *L) { + lua_newtable(L); + lua_pushvalue(L, -1); + lua_setfield(L, LUA_GLOBALSINDEX, "nerv"); + nerv_point_init(L); + return 1; +} |