mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 21:48:30 +00:00
34 lines
899 B
C#
34 lines
899 B
C#
namespace SabreTools.Models.GCF
|
|
{
|
|
/// <remarks>
|
|
/// Part of version 5 but not version 6.
|
|
/// </remarks>
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
|
|
public sealed class BlockEntryMapHeader
|
|
{
|
|
/// <summary>
|
|
/// Number of data blocks.
|
|
/// </summary>
|
|
public uint BlockCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Index of the first block entry.
|
|
/// </summary>
|
|
public uint FirstBlockEntryIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// Index of the last block entry.
|
|
/// </summary>
|
|
public uint LastBlockEntryIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public uint Dummy0 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Header checksum.
|
|
/// </summary>
|
|
public uint Checksum { get; set; }
|
|
}
|
|
} |