This commit is contained in:
Redo
2025-10-06 23:04:30 -05:00
commit 7bee616b8e
12 changed files with 1739 additions and 0 deletions

9
inc/lua/lua.hpp Normal file
View File

@@ -0,0 +1,9 @@
// C++ wrapper for LuaJIT header files.
extern "C" {
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
#include "luajit.h"
}