初始化

This commit is contained in:
Ayase
2018-04-28 02:25:19 +08:00
commit 79ec29f0fe
63 changed files with 20387 additions and 0 deletions

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