diff --git a/Il2CppInspector/Reflection/TypeInfo.cs b/Il2CppInspector/Reflection/TypeInfo.cs index 022808b..ce88753 100644 --- a/Il2CppInspector/Reflection/TypeInfo.cs +++ b/Il2CppInspector/Reflection/TypeInfo.cs @@ -304,7 +304,10 @@ namespace Il2CppInspector.Reflection { MemberType = memberType | MemberTypes.NestedType; } - // TODO: Generic* properties and ContainsGenericParameters + IsGenericType = true; + IsGenericParameter = false; + IsGenericTypeDefinition = false; // This is a use of a generic type definition + ContainsGenericParameters = true; // Get the instantiation var genericInstance = image.ReadMappedObject(generic.context.class_inst);