diff options
Diffstat (limited to 'source/Plugin_NewLua.h')
-rw-r--r-- | source/Plugin_NewLua.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source/Plugin_NewLua.h b/source/Plugin_NewLua.h index 8ba22477a..acc43c7a4 100644 --- a/source/Plugin_NewLua.h +++ b/source/Plugin_NewLua.h @@ -94,9 +94,12 @@ public: /// Binds the console command to call the function specified by a Lua function reference. Simply adds to CommandMap. void BindConsoleCommand(const AString & a_Command, int a_FnRef); - lua_State* GetLuaState() { return m_LuaState; } + lua_State * GetLuaState(void) { return m_LuaState; } - cCriticalSection & GetCriticalSection() { return m_CriticalSection; } + cCriticalSection & GetCriticalSection(void) { return m_CriticalSection; } + + /// Removes a previously referenced object (luaL_unref()) + void Unreference(int a_LuaRef); protected: cCriticalSection m_CriticalSection; |