rename /apps/lua/ to /apps/twnlua/

This commit is contained in:
2024-10-07 15:52:32 +03:00
parent 36fbc5b43f
commit 8463ed4440
77 changed files with 1 additions and 1 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"
}