Add support for metadata version 29.2 and 31

This commit is contained in:
LukeFZ
2024-06-24 18:41:14 +02:00
parent 98edac1aea
commit 87766f6f96
7 changed files with 4871 additions and 10 deletions

View File

@@ -88,7 +88,7 @@ namespace Il2CppInspector
// Set object versioning for Bin2Object from metadata version
Version = Header.version;
if (Version < 16 || Version > 29.1) {
if (Version < 16 || Version > 31) {
throw new InvalidOperationException($"The supplied metadata file is not of a supported version ({Header.version}).");
}