diff options
Diffstat (limited to 'src/lua/jin.cpp')
-rw-r--r-- | src/lua/jin.cpp | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/lua/jin.cpp b/src/lua/jin.cpp index 87e7bac..b11488b 100644 --- a/src/lua/jin.cpp +++ b/src/lua/jin.cpp @@ -1,5 +1,6 @@ #include "common/je_lua.h" #include "common/je_lua_common.h" +#include "modules/je_lua_modules.h" #include "embed/embed.h" #include "jin.h" @@ -8,20 +9,6 @@ namespace JinEngine namespace Lua { - LUA_PORT int luaopen_core(lua_State* L); - LUA_PORT int luaopen_graphics(lua_State* L); - LUA_PORT int luaopen_audio(lua_State* L); - LUA_PORT int luaopen_net(lua_State* L); - LUA_PORT int luaopen_event(lua_State* L); - LUA_PORT int luaopen_time(lua_State* L); - LUA_PORT int luaopen_mouse(lua_State* L); - LUA_PORT int luaopen_keyboard(lua_State* L); - LUA_PORT int luaopen_filesystem(lua_State* L); - LUA_PORT int luaopen_joypad(lua_State* L); - LUA_PORT int luaopen_math(lua_State* L); - LUA_PORT int luaopen_thread(lua_State* L); - LUA_PORT int luaopen_bit(lua_State* L); - LUA_IMPLEMENT int l_getversion(lua_State* L) { luax_pushstring(L, VERSION); |