mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-09 21:32:11 +00:00
16 lines
383 B
C#
16 lines
383 B
C#
namespace BinaryObjectScanner.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;
|
|
|
|
/// <summary>
|
|
/// Offsets
|
|
/// </summary>
|
|
public uint[] Offsets;
|
|
}
|
|
} |