diff options
Diffstat (limited to 'src/libjin-lua/je_lua_embed.h')
-rw-r--r-- | src/libjin-lua/je_lua_embed.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libjin-lua/je_lua_embed.h b/src/libjin-lua/je_lua_embed.h index 067e296..6689be7 100644 --- a/src/libjin-lua/je_lua_embed.h +++ b/src/libjin-lua/je_lua_embed.h @@ -19,6 +19,7 @@ namespace JinEngine #include "scripts/utils/json.lua.h" #include "scripts/utils/xml.lua.h" #include "scripts/log.lua.h" + #include "scripts/tiledmap/tiledmap.lua.h" #include "scripts/app.lua.h" @@ -40,6 +41,7 @@ namespace JinEngine { "time.lua", time_lua }, { "json.lua", json_lua }, { "xml.lua", xml_lua }, + { "tiledmap.lua", tiledmap_lua }, // { "log.lua", log_lua }, { 0, 0 } @@ -75,7 +77,7 @@ namespace JinEngine luax_call(L, 0, 0); } } - + } // namespace Embed } // namespace JinEngine |