mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-08 18:55:33 -05:00
10 lines
214 B
C#
10 lines
214 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NHSE.Parsing;
|
|
|
|
public sealed class TXT2() : MSBTSection(string.Empty, [])
|
|
{
|
|
public uint NumberOfStrings;
|
|
|
|
public readonly List<MSBTTextString> Strings = [];
|
|
} |