aboutsummaryrefslogtreecommitdiff
path: root/project/vs2015/external/lua/include/lua.hpp
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-08-08 17:22:26 +0200
committerraysan5 <raysan5@gmail.com>2016-08-08 17:22:26 +0200
commit7e367273282f4ce1986b2b95cd86a2b8c8c4a81c (patch)
tree9f2f4ae44912f551f9be8a8af958efc09aa6bd0b /project/vs2015/external/lua/include/lua.hpp
parented387d00aaaee50ef7d4dc2f355123e16c7727ca (diff)
downloadraylib-7e367273282f4ce1986b2b95cd86a2b8c8c4a81c.tar.gz
raylib-7e367273282f4ce1986b2b95cd86a2b8c8c4a81c.zip
Visual Studio 2015 project
Diffstat (limited to 'project/vs2015/external/lua/include/lua.hpp')
-rw-r--r--project/vs2015/external/lua/include/lua.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/project/vs2015/external/lua/include/lua.hpp b/project/vs2015/external/lua/include/lua.hpp
new file mode 100644
index 00000000..ec417f59
--- /dev/null
+++ b/project/vs2015/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"
+}