mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 21:48:30 +00:00
29 lines
702 B
C#
29 lines
702 B
C#
namespace SabreTools.Models.XZP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
|
|
public sealed class Header
|
|
{
|
|
#if NET48
|
|
public string Signature { get; set; }
|
|
#else
|
|
public string? Signature { get; set; }
|
|
#endif
|
|
|
|
public uint Version { get; set; }
|
|
|
|
public uint PreloadDirectoryEntryCount { get; set; }
|
|
|
|
public uint DirectoryEntryCount { get; set; }
|
|
|
|
public uint PreloadBytes { get; set; }
|
|
|
|
public uint HeaderLength { get; set; }
|
|
|
|
public uint DirectoryItemCount { get; set; }
|
|
|
|
public uint DirectoryItemOffset { get; set; }
|
|
|
|
public uint DirectoryItemLength { get; set; }
|
|
}
|
|
}
|