mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
16 lines
350 B
C#
16 lines
350 B
C#
namespace BinaryObjectScanner.Models.VPK
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VPKFile.h"/>
|
|
public sealed class Header
|
|
{
|
|
/// <summary>
|
|
/// Always 0x55aa1234.
|
|
/// </summary>
|
|
public uint Signature;
|
|
|
|
public uint Version;
|
|
|
|
public uint DirectoryLength;
|
|
}
|
|
}
|