mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-14 06:19:53 -05:00
16 lines
369 B
C#
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;
|
|
}
|
|
}
|
|
}
|