compiled-in LUA

This commit is contained in:
2021-04-19 23:59:56 +03:00
parent 7bed88b4e5
commit eb2bc2a641
62 changed files with 23154 additions and 107 deletions

9
3rd/lua/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"
}