mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 17:22:14 +00:00
16 lines
380 B
C#
16 lines
380 B
C#
namespace SabreTools.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 { get; set; }
|
|
|
|
public uint Version { get; set; }
|
|
|
|
public uint DirectoryLength { get; set; }
|
|
}
|
|
}
|