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

LuaException() 공개 메소드

public LuaException ( IntPtr L, string message ) : System
L System.IntPtr
message string
리턴 System
        public LuaException(lua_State L, string message)
            : base(message)
        {
            this.L = L;
        }
LuaException