From 8d6464fe655a68d278a9806392ec1488757adf2e Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Wed, 11 Jun 2025 07:40:15 +1200 Subject: Initial commit --- src/lua/lua.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/lua/lua.hpp (limited to 'src/lua/lua.hpp') 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++ +// <> not supplied automatically because Lua also compiles as C++ + +extern "C" { +#include "lua.h" +#include "lualib.h" +#include "lauxlib.h" +} -- cgit v1.2.3