Add vendor:lua/5.2

This commit is contained in:
gingerBill
2023-04-05 16:52:17 +01:00
parent 03972d565e
commit 8ff713f3bb
10 changed files with 2001 additions and 0 deletions

9
vendor/lua/5.2/include/lua.hpp vendored 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"
}