mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-26 18:52:20 +00:00
22 lines
522 B
C#
22 lines
522 B
C#
namespace SabreTools.Models.VPK
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VPKFile.h"/>
|
|
public sealed class DirectoryEntry
|
|
{
|
|
public uint CRC { get; set; }
|
|
|
|
public ushort PreloadBytes { get; set; }
|
|
|
|
public ushort ArchiveIndex { get; set; }
|
|
|
|
public uint EntryOffset { get; set; }
|
|
|
|
public uint EntryLength { get; set; }
|
|
|
|
/// <summary>
|
|
/// Always 0xffff.
|
|
/// </summary>
|
|
public ushort Dummy0 { get; set; }
|
|
}
|
|
}
|