mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 21:29:18 +00:00
22 lines
499 B
C#
22 lines
499 B
C#
namespace BinaryObjectScanner.Models.PAK
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/PAKFile.h"/>
|
|
public sealed class Header
|
|
{
|
|
/// <summary>
|
|
/// Signature
|
|
/// </summary>
|
|
public string Signature;
|
|
|
|
/// <summary>
|
|
/// Directory Offset
|
|
/// </summary>
|
|
public uint DirectoryOffset;
|
|
|
|
/// <summary>
|
|
/// Directory Length
|
|
/// </summary>
|
|
public uint DirectoryLength;
|
|
}
|
|
}
|