namespace SabreTools.Data.Models.BSP
{
///
/// The TexdataStringData lump consists of concatenated null-terminated
/// strings giving the texture name.
///
///
public sealed class TexdataStringData : Lump
{
///
/// Strings
///
public string[] Strings { get; set; } = [];
}
}