mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
34 lines
1.6 KiB
C#
34 lines
1.6 KiB
C#
using System.Collections.Generic;
|
|
public class AOTGenericReferences : UnityEngine.MonoBehaviour
|
|
{
|
|
|
|
// {{ AOT assemblies
|
|
public static readonly IReadOnlyList<string> PatchedAOTAssemblyList = new List<string>
|
|
{
|
|
"SHFrame.dll",
|
|
"UniTask.dll",
|
|
"mscorlib.dll",
|
|
};
|
|
// }}
|
|
|
|
// {{ constraint implement type
|
|
// }}
|
|
|
|
// {{ AOT generic types
|
|
// Cysharp.Threading.Tasks.CompilerServices.AsyncUniTask.<>c<HotScripts.GameLauncher.HotLauncherMain.<RunLauncher>d__1>
|
|
// Cysharp.Threading.Tasks.CompilerServices.AsyncUniTask<HotScripts.GameLauncher.HotLauncherMain.<RunLauncher>d__1>
|
|
// Cysharp.Threading.Tasks.ITaskPoolNode<object>
|
|
// Cysharp.Threading.Tasks.UniTaskCompletionSourceCore<Cysharp.Threading.Tasks.AsyncUnit>
|
|
// System.Action<object>
|
|
// System.Func<int>
|
|
// }}
|
|
|
|
public void RefMethods()
|
|
{
|
|
// System.Void Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskMethodBuilder.AwaitUnsafeOnCompleted<Cysharp.Threading.Tasks.UniTask.Awaiter,HotScripts.GameLauncher.HotLauncherMain.<RunLauncher>d__1>(Cysharp.Threading.Tasks.UniTask.Awaiter&,HotScripts.GameLauncher.HotLauncherMain.<RunLauncher>d__1&)
|
|
// System.Void Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskMethodBuilder.Start<HotScripts.GameLauncher.HotLauncherMain.<RunLauncher>d__1>(HotScripts.GameLauncher.HotLauncherMain.<RunLauncher>d__1&)
|
|
// System.Void Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskMethodBuilder.Start<SHFrame.UIModule.<Open>d__15<object>>(SHFrame.UIModule.<Open>d__15<object>&)
|
|
// Cysharp.Threading.Tasks.UniTask SHFrame.UIModule.Open<object>(string,string,FairyGUI.GComponent,object[])
|
|
// object[] System.Array.Empty<object>()
|
|
}
|
|
} |