Define Subfile's ints on the same line.
This commit is contained in:
parent
771601d0ce
commit
31712565cb
|
@ -29,8 +29,7 @@
|
||||||
class Subfile
|
class Subfile
|
||||||
{
|
{
|
||||||
public string[] name = new string(br.ReadChars(32)).TrimEnd('\0').Split('\0');
|
public string[] name = new string(br.ReadChars(32)).TrimEnd('\0').Split('\0');
|
||||||
public int start = br.ReadInt32();
|
public int start = br.ReadInt32(), size = br.ReadInt32();
|
||||||
public int size = br.ReadInt32();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue