AGS.Plugin.Lua.InvokeLua.ExceptionPanicHandler C# (CSharp) 메소드

ExceptionPanicHandler() 공개 정적인 메소드

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