增加lua系统

This commit is contained in:
Huoji's
2023-10-02 18:04:54 +08:00
parent dc75327dec
commit 88f121e295
71 changed files with 30605 additions and 7 deletions

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