mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-19 15:25:18 +00:00
18 lines
580 B
C#
18 lines
580 B
C#
namespace SabreTools.Serialization.Models.BSP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/BSPFile.h"/>
|
|
/// <see href="https://developer.valvesoftware.com/wiki/BSP_(GoldSrc)"/>
|
|
public sealed class TextureHeader
|
|
{
|
|
/// <summary>
|
|
/// Number of BSPMIPTEX structures
|
|
/// </summary>
|
|
public uint MipTextureCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Offsets
|
|
/// </summary>
|
|
/// <remarks><see cref="MipTextureCount"> entries</remarks>
|
|
public int[]? Offsets { get; set; }
|
|
}
|
|
} |