mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-07 18:25:16 -05:00
8 lines
298 B
C#
8 lines
298 B
C#
namespace NHSE.Parsing;
|
|
|
|
public abstract class MSBTSection(string identifier, byte[] padding)
|
|
{
|
|
public string Identifier { get; set; } = identifier;
|
|
public uint SectionSize { get; set; } // Begins after Unknown1
|
|
public byte[] Padding1 { get; set; } = padding; // Always 0x0000 0000
|
|
} |