mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-21 17:59:47 -05:00
17 lines
312 B
C#
17 lines
312 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NHSE.Parsing
|
|
{
|
|
public class TXT2 : MSBTSection
|
|
{
|
|
public uint NumberOfStrings;
|
|
|
|
public readonly List<MSBTTextString> Strings = new();
|
|
|
|
public TXT2() : base(string.Empty, Array.Empty<byte>())
|
|
{
|
|
}
|
|
}
|
|
}
|