Files

25 lines
669 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.WAD3
2025-09-26 10:57:15 -04:00
{
/// <summary>
/// Half-Life Texture Package File
/// </summary>
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/WADFile.h"/>
public sealed class File
{
/// <summary>
/// Deserialized header data
/// </summary>
public Header Header { get; set; } = new();
2025-09-26 10:57:15 -04:00
/// <summary>
/// Deserialized dir entry data
/// </summary>
public DirEntry[] DirEntries { get; set; } = [];
2025-09-26 10:57:15 -04:00
/// <summary>
/// Deserialized file entry data
/// </summary>
public FileEntry[] FileEntries { get; set; } = [];
2025-09-26 10:57:15 -04:00
}
}