From 06f57db5d6ff189e8f04ac52f19498d7001b445f Mon Sep 17 00:00:00 2001 From: Walter Schell Date: Mon, 26 Apr 2021 07:40:55 -0400 Subject: [PATCH] Added previously omitted lua.hpp header file --- lua-5.4.2/include/lua.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lua-5.4.2/include/lua.hpp diff --git a/lua-5.4.2/include/lua.hpp b/lua-5.4.2/include/lua.hpp new file mode 100644 index 0000000..ec417f5 --- /dev/null +++ b/lua-5.4.2/include/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" +}