From 4a4b43fa3cf1bd379ee1eb53223d63fa0358bcc5 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 28 Sep 2014 17:12:59 +0200 Subject: some lua work --- include/luaglue/LuaVM.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 include/luaglue/LuaVM.hpp (limited to 'include') diff --git a/include/luaglue/LuaVM.hpp b/include/luaglue/LuaVM.hpp new file mode 100755 index 0000000..7449b3f --- /dev/null +++ b/include/luaglue/LuaVM.hpp @@ -0,0 +1,19 @@ +#ifndef __LUA_VM_H +#define __LUA_VM_H + +#include "lua.hpp" + +class LuaVM +{ + public: + LuaVM( ); + ~LuaVM( ); + + private: + void initialize( ); + + private: + lua_State *m_lua; +}; + +#endif -- cgit v1.2.3-54-g00ecf