Files
TuanTuan-Engine/Assets/HybridCLRGenerate/AOTGenericReferences.cs
2025-11-03 12:03:21 +08:00

23 lines
401 B
C#

using System.Collections.Generic;
public class AOTGenericReferences : UnityEngine.MonoBehaviour
{
// {{ AOT assemblies
public static readonly IReadOnlyList<string> PatchedAOTAssemblyList = new List<string>
{
"mscorlib.dll",
};
// }}
// {{ constraint implement type
// }}
// {{ AOT generic types
// System.Action<float>
// System.Action<object>
// }}
public void RefMethods()
{
}
}