diff options
author | Determinant <[email protected]> | 2015-05-24 15:39:24 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-05-24 15:39:24 +0800 |
commit | e21e2d9480c83fee13b2e721417cc04fe8036ced (patch) | |
tree | c45e19379badce0815bdbdbd58bc8df27cc5da7d /nerv.c | |
parent | 0e250c43b62b7593edc163d0510d229010361707 (diff) |
add param file implementation
Diffstat (limited to 'nerv.c')
-rw-r--r-- | nerv.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4,11 +4,13 @@ extern void nerv_point_init(lua_State *L); extern void nerv_matrix_init(lua_State *L); +extern void nerv_param_init(lua_State *L); int luaopen_libnerv(lua_State *L) { lua_newtable(L); lua_setfield(L, LUA_GLOBALSINDEX, "nerv"); nerv_point_init(L); nerv_matrix_init(L); + nerv_param_init(L); return 1; } |