aboutsummaryrefslogtreecommitdiff
path: root/src/lua/lua.hpp
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2025-06-11 07:40:15 +1200
committerArslaan Pathan <[email protected]>2025-06-11 07:40:15 +1200
commit8d6464fe655a68d278a9806392ec1488757adf2e (patch)
treee585d55421983d1e15a9459ad64adca7621172fa /src/lua/lua.hpp
downloadshowdownofthesticks-8d6464fe655a68d278a9806392ec1488757adf2e.tar.xz
showdownofthesticks-8d6464fe655a68d278a9806392ec1488757adf2e.zip
Initial commit
Diffstat (limited to 'src/lua/lua.hpp')
-rw-r--r--src/lua/lua.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lua/lua.hpp b/src/lua/lua.hpp
new file mode 100644
index 0000000..ec417f5
--- /dev/null
+++ b/src/lua/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"
+}