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