IL2CPP: Load generic type/method instantiation signatures

This commit is contained in:
Katy Coe
2020-01-28 04:25:05 +01:00
parent aafbfc946d
commit feed8aa378
2 changed files with 6 additions and 2 deletions

View File

@@ -56,6 +56,7 @@ namespace Il2CppInspector
public Dictionary<int, (ulong, object)> ParameterDefaultValue { get; } = new Dictionary<int, (ulong, object)>();
public List<long> FieldOffsets { get; }
public List<Il2CppType> TypeUsages => Binary.Types;
public List<Il2CppGenericInst> GenericInstances => Binary.GenericInstances;
public Dictionary<string, Il2CppCodeGenModule> Modules => Binary.Modules;
public ulong[] CustomAttributeGenerators => Binary.CustomAttributeGenerators;
public Il2CppMethodSpec[] MethodSpecs => Binary.MethodSpecs;