Define Subfile's ints on the same line

This commit is contained in:
NintenHero 2024-08-11 17:00:04 -05:00 committed by GitHub
parent 35a11c18f6
commit 44992f3647
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 3 deletions

View File

@ -37,9 +37,7 @@ namespace Warspear_Online_Extractor
class Subfile class Subfile
{ {
public int start = br.ReadInt32(); public int start = br.ReadInt32(), size = br.ReadInt32(), unknown = br.ReadInt32();
public int size = br.ReadInt32();
int unknown = br.ReadInt32();
byte unknown2 = br.ReadByte(); byte unknown2 = br.ReadByte();
public string name = new string(br.ReadChars(55)).TrimEnd('\0'); public string name = new string(br.ReadChars(55)).TrimEnd('\0');
} }