mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-16 13:55:29 +00:00
17 lines
453 B
C#
17 lines
453 B
C#
namespace SabreTools.Models.BSP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/BSPFile.h"/>
|
|
public sealed class TextureHeader
|
|
{
|
|
/// <summary>
|
|
/// Texture count
|
|
/// </summary>
|
|
public uint TextureCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Offsets
|
|
/// </summary>
|
|
/// <remarks>TextureCount entries</remarks>
|
|
public uint[]? Offsets { get; set; }
|
|
}
|
|
} |