【新增】添加lua原版v5.4.6代码

This commit is contained in:
niubinghui
2024-07-30 14:24:20 +08:00
parent ae0823e5fc
commit d51b976d46
75 changed files with 43873 additions and 0 deletions

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"
}