aboutsummaryrefslogtreecommitdiff
path: root/src/external/lua/include/lua.hpp
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-08-03 21:38:21 +0200
committerraysan5 <raysan5@gmail.com>2016-08-03 21:38:21 +0200
commit735968e68543bb5141122f181608d0d7ada9a3be (patch)
treea8763182a289c9d321d08d51cc54f7169c858310 /src/external/lua/include/lua.hpp
parentd3d9aaceb12111ebe54f55f23cd87dfb43964f1f (diff)
downloadraylib-735968e68543bb5141122f181608d0d7ada9a3be.tar.gz
raylib-735968e68543bb5141122f181608d0d7ada9a3be.zip
[rlua] new module: raylib Lua binding
Diffstat (limited to 'src/external/lua/include/lua.hpp')
-rw-r--r--src/external/lua/include/lua.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/external/lua/include/lua.hpp b/src/external/lua/include/lua.hpp
new file mode 100644
index 00000000..ec417f59
--- /dev/null
+++ b/src/external/lua/include/lua.hpp
@@ -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"
+}