AGS.Plugin.Lua.InvokeLua.ExceptionPanicHandler C# (CSharp) Method

ExceptionPanicHandler() public static method

public static ExceptionPanicHandler ( IntPtr L ) : int
L System.IntPtr
return int
        public static int ExceptionPanicHandler(lua_State L)
        {
            throw new LuaException(L, InvokeLua.lua_tostring(L, -1));
        }
InvokeLua