Files

16 lines
459 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.BSP
2025-09-26 10:57:15 -04:00
{
/// <summary>
/// The TexdataStringTable (Lump 44) is an array of integers which
/// are offsets into the TexdataStringData (lump 43).
/// </summary>
/// <see href="https://developer.valvesoftware.com/wiki/BSP_(Source)"/>
public sealed class TexdataStringTable : Lump
{
/// <summary>
/// Offsets
/// </summary>
public int[] Offsets { get; set; } = [];
2025-09-26 10:57:15 -04:00
}
2025-10-30 21:21:56 -04:00
}