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