This commit is contained in:
Razmoth
2023-08-21 21:45:57 +04:00
parent 6da2387c8c
commit 0bd3fa6db2
48 changed files with 967 additions and 510 deletions

View File

@@ -9,5 +9,13 @@ namespace AssetStudio
{
public int localSerializedFileIndex;
public long localIdentifierInFile;
public override string ToString()
{
var sb = new StringBuilder();
sb.Append($"localSerializedFileIndex: {localSerializedFileIndex} | ");
sb.Append($"localIdentifierInFile: {localIdentifierInFile}");
return sb.ToString();
}
}
}