Lua/LuaState: Add error handling methods

This commit is contained in:
Lynix
2018-05-21 19:31:19 +02:00
parent efa727dfd4
commit f2c16f916a
5 changed files with 40 additions and 19 deletions

View File

@@ -31,7 +31,7 @@ namespace Nz
private:
LuaCoroutine(lua_State* internalState, int refIndex);
bool Run(int argCount, int resultCount) override;
bool Run(int argCount, int resultCount, int errHandler) override;
int m_ref;
};