From 10a0e290ac07524dc129cc2b227b0f9e95df0f8e Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 16 Apr 2012 09:39:52 -0500 Subject: first commit --- luainc.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 luainc.h (limited to 'luainc.h') diff --git a/luainc.h b/luainc.h new file mode 100644 index 0000000..336eda2 --- /dev/null +++ b/luainc.h @@ -0,0 +1,12 @@ + +#ifndef __LUA_INC_H__ +#define __LUA_INC_H__ + +extern "C" +{ + #include "Lua/lua.h" + #include "Lua/lauxlib.h" + #include "Lua/lualib.h" +} + +#endif // __LUA_INC_H__ \ No newline at end of file -- cgit