Files
SabreTools.Models/GCF/BlockEntryMapHeader.cs
2023-09-10 21:24:10 -04:00

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; }
}
}