obfuz/Samples/WorkWithHybridCLR/Assets/Main/AOTGenericReferences.cs

22 lines
419 B
C#
Raw Normal View History

2025-05-20 17:33:18 +08:00
using System.Collections.Generic;
public class AOTGenericReferences : UnityEngine.MonoBehaviour
{
// {{ AOT assemblies
public static readonly IReadOnlyList<string> PatchedAOTAssemblyList = new List<string>
{
2025-05-21 10:42:06 +08:00
"Obfuz.Runtime.dll",
2025-05-20 17:33:18 +08:00
};
// }}
// {{ constraint implement type
// }}
// {{ AOT generic types
2025-05-21 10:42:06 +08:00
// Obfuz.EncryptionService<Obfuz.DefaultStaticEncryptionScope>
2025-05-20 17:33:18 +08:00
// }}
public void RefMethods()
{
}
}