diff options
author | aunsane <aunsane@gmail.com> | 2017-09-29 00:22:53 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-09-29 00:39:19 +0300 |
commit | 8d706b4ef942e01814f0a9db519aa32505b9abed (patch) | |
tree | ec3cd0464d4862f42041936958595c057abdfb78 /plugins/MirLua/src/mlua_enviroment.h | |
parent | af9c3d7de7e35632d046575b5e4809a04abec816 (diff) |
MirLua: added service functions to execute lua code
version bump
Diffstat (limited to 'plugins/MirLua/src/mlua_enviroment.h')
-rw-r--r-- | plugins/MirLua/src/mlua_enviroment.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/MirLua/src/mlua_enviroment.h b/plugins/MirLua/src/mlua_enviroment.h index 4366d58d03..73f3f9c377 100644 --- a/plugins/MirLua/src/mlua_enviroment.h +++ b/plugins/MirLua/src/mlua_enviroment.h @@ -12,15 +12,14 @@ public: lua_State *L; CMLuaEnviroment(lua_State *L); - virtual ~CMLuaEnviroment() { } + virtual ~CMLuaEnviroment(); static CMLuaEnviroment* GetEnviroment(lua_State *L); static int GetEnviromentId(lua_State *L); int GetId() const; - bool Load(int ind); - void Unload(); + bool Load(); }; #endif //_LUA_ENVIROMENT_H_ |