Improve SerializedFile reading.

This commit is contained in:
Perfare
2021-05-28 22:23:07 +08:00
parent caa45216ef
commit 432116d834
17 changed files with 218 additions and 159 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AssetStudio
{
public enum SerializedFileFormatVersion
{
kUnsupported = 1,
kUnknown_2 = 2,
kUnknown_3 = 3,
kUnknown_5 = 5,
kUnknown_6 = 6,
kUnknown_7 = 7,
kUnknown_8 = 8,
kUnknown_9 = 9,
kUnknown_10 = 10,
kHasScriptTypeIndex = 11,
kUnknown_12 = 12,
kHasTypeTreeHashes = 13,
kUnknown_14 = 14,
kSupportsStrippedObject = 15,
kRefactoredClassId = 16,
kRefactorTypeData = 17,
kRefactorShareableTypeTreeData = 18,
kTypeTreeNodeWithTypeFlags = 19,
kSupportsRefObject = 20,
kStoresTypeDependencies = 21,
kLargeFilesSupport = 22
}
}