AppModel: Handle .NET unmapped pointer type definitions

This commit is contained in:
Katy Coe
2020-07-14 16:56:30 +02:00
parent b9612676ed
commit ef043383fc
2 changed files with 21 additions and 4 deletions

View File

@@ -518,8 +518,8 @@ namespace Il2CppInspector.Cpp
// Get all of the types in a logical group
public IEnumerable<CppType> GetTypeGroup(string groupName) => Types.Values.Where(t => t.Group == groupName);
// Add a type externally
public void Add(CppType type) {
// Add a type
private void Add(CppType type) {
type.Group = currentGroup;
Types.Add(type.Name, type);
}