diff options
author | bloodstalker <thabogre@gmail.com> | 2017-05-12 12:10:08 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-05-12 12:10:08 +0000 |
commit | 3f764e681f8d868fe725e9a573b3a1815194a559 (patch) | |
tree | 435af067340d7f027e598a79e1ec98b0c57b3e74 /bruiser/lua-5.3.4/src/lua.hpp | |
parent | its a submodule (diff) | |
download | mutator-3f764e681f8d868fe725e9a573b3a1815194a559.tar.gz mutator-3f764e681f8d868fe725e9a573b3a1815194a559.zip |
yup. lua. better than whatever shaky messy DSL i was gonna come up with for bruiseer.
Diffstat (limited to 'bruiser/lua-5.3.4/src/lua.hpp')
-rw-r--r-- | bruiser/lua-5.3.4/src/lua.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bruiser/lua-5.3.4/src/lua.hpp b/bruiser/lua-5.3.4/src/lua.hpp new file mode 100644 index 0000000..ec417f5 --- /dev/null +++ b/bruiser/lua-5.3.4/src/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" +} |