[rlua] new module: raylib Lua binding

This commit is contained in:
raysan5
2016-08-03 21:38:21 +02:00
parent d3d9aaceb1
commit 735968e685
10 changed files with 5289 additions and 0 deletions

9
src/external/lua/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"
}