NHSE/NHSE.Parsing/MSBT/MSBTSection.cs

16 lines
369 B
C#

namespace NHSE.Parsing
{
public class MSBTSection
{
public string Identifier;
public uint SectionSize; // Begins after Unknown1
public byte[] Padding1; // Always 0x0000 0000
public MSBTSection(string identifier, byte[] padding)
{
Identifier = identifier;
Padding1 = padding;
}
}
}