Files
TuanTuan-Engine/Assets/HybridCLRGenerate/AOTGenericReferences.cs

23 lines
401 B
C#
Raw Normal View History

2025-11-03 00:24:36 +08:00
using System.Collections.Generic;
public class AOTGenericReferences : UnityEngine.MonoBehaviour
{
// {{ AOT assemblies
public static readonly IReadOnlyList<string> PatchedAOTAssemblyList = new List<string>
{
2025-11-03 12:03:21 +08:00
"mscorlib.dll",
2025-11-03 00:24:36 +08:00
};
// }}
// {{ constraint implement type
// }}
// {{ AOT generic types
2025-11-03 12:03:21 +08:00
// System.Action<float>
// System.Action<object>
2025-11-03 00:24:36 +08:00
// }}
public void RefMethods()
{
}
}