| | |
| | | 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>(); |
| | |
| | | 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) => |