mirror of
https://github.com/kwsch/NHSE.git
synced 2026-07-18 16:21:41 -05:00
18 lines
393 B
C#
18 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NHSE.Parsing
|
|
{
|
|
public class LBL1 : MSBTSection
|
|
{
|
|
public uint NumberOfGroups;
|
|
|
|
public readonly List<MSBTGroup> Groups = new List<MSBTGroup>();
|
|
public readonly List<MSBTLabel> Labels = new List<MSBTLabel>();
|
|
|
|
public LBL1() : base(string.Empty, Array.Empty<byte>())
|
|
{
|
|
}
|
|
}
|
|
}
|