Rename Il2CppDumper to Il2CppCSharpDumper

This commit is contained in:
Katy Coe
2019-10-31 01:18:56 +01:00
parent a9b7b8d7af
commit 5005a6ed03
3 changed files with 4 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ namespace Il2CppInspector
// Write output file
int i = 0;
foreach (var il2cpp in il2cppInspectors)
new Il2CppDumper(il2cpp) {ExcludedNamespaces = excludedNamespaces}.WriteFile(outFile + (i++ > 0 ? "-" + (i-1) : ""));
new Il2CppCSharpDumper(il2cpp) {ExcludedNamespaces = excludedNamespaces}.WriteFile(outFile + (i++ > 0 ? "-" + (i-1) : ""));
}
}
}