少年修仙传客户端基础资源
hch
2023-06-14 233f4cc3588e2bf43cdd7cdbf4e5e4ad9585d46d
Assets/ILRuntime/Src/ILLauncherProxy.cs
@@ -185,6 +185,7 @@
        appdomain.DelegateManager.RegisterMethodDelegate<int, int, int, int>();
        appdomain.DelegateManager.RegisterMethodDelegate<long, long>();
        appdomain.DelegateManager.RegisterMethodDelegate<long, long, long>();
        appdomain.DelegateManager.RegisterMethodDelegate<System.Int32, System.Single, System.Single>();
        //有返回值
        appdomain.DelegateManager.RegisterFunctionDelegate<UnityEngine.Color>();
@@ -198,6 +199,34 @@
        appdomain.DelegateManager.RegisterFunctionDelegate<System.Int32, System.Int32, System.Int32>();
        appdomain.DelegateManager.RegisterFunctionDelegate<ILRuntime.Runtime.Intepreter.ILTypeInstance, ILRuntime.Runtime.Intepreter.ILTypeInstance, System.Int32>();
        appdomain.DelegateManager.RegisterFunctionDelegate<ILRuntime.Runtime.Intepreter.ILTypeInstance, System.Boolean>();
        appdomain.DelegateManager.RegisterFunctionDelegate<global::Int3, global::Int3, System.Int32>();
        appdomain.DelegateManager.RegisterFunctionDelegate<global::StoreModel.StoreData, global::StoreModel.StoreData, System.Int32>();
        appdomain.DelegateManager.RegisterDelegateConvertor<UnityEngine.Events.UnityAction<System.Int32, System.Single, System.Single>>((act) =>
        {
            return new UnityEngine.Events.UnityAction<System.Int32, System.Single, System.Single>((arg0, arg1, arg2) =>
            {
                ((Action<System.Int32, System.Single, System.Single>)act)(arg0, arg1, arg2);
            });
        });
        appdomain.DelegateManager.RegisterDelegateConvertor<System.Comparison<global::StoreModel.StoreData>>((act) =>
        {
            return new System.Comparison<global::StoreModel.StoreData>((x, y) =>
            {
                return ((Func<global::StoreModel.StoreData, global::StoreModel.StoreData, System.Int32>)act)(x, y);
            });
        });
        appdomain.DelegateManager.RegisterDelegateConvertor<System.Comparison<global::Int3>>((act) =>
        {
            return new System.Comparison<global::Int3>((x, y) =>
            {
                return ((Func<global::Int3, global::Int3, System.Int32>)act)(x, y);
            });
        });
        appdomain.DelegateManager.RegisterDelegateConvertor<System.Predicate<ILRuntime.Runtime.Intepreter.ILTypeInstance>>((act) =>