mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 05:45:34 +00:00
20 lines
468 B
C#
20 lines
468 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>
|
|
#if NET48
|
|
public uint[] Offsets { get; set; }
|
|
#else
|
|
public uint[]? Offsets { get; set; }
|
|
#endif
|
|
}
|
|
} |