NHSE/NHSE.Parsing/MSBT/MSBTSection.cs
2026-01-13 16:02:58 -06:00

14 lines
322 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;
}
}