feat(Misc): add support new modules loading api (#71)

This commit is contained in:
Kargatum
2021-12-02 20:29:13 +07:00
committed by GitHub
parent 21a191f801
commit 1c1e17e578
68 changed files with 969 additions and 56 deletions

9
src/lualib/lua.hpp Normal file
View File

@@ -0,0 +1,9 @@
// lua.hpp
// Lua header files for C++
// <<extern "C">> not supplied automatically because Lua also compiles as C++
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}