AGS.Plugin.Lua.LuaDotNetObjectProxy.GetMethodProxy C# (CSharp) Method

GetMethodProxy() public method

public GetMethodProxy ( IntPtr L, string name, MethodInfo methods ) : void
L System.IntPtr
name string
methods System.Reflection.MethodInfo
return void
        public void GetMethodProxy(lua_State L, string name, MethodInfo[] methods)
        {
            proxiedMethods[name] = new LuaDotNetMethodProxy(L, this, name, methods);
        }