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

26 lines
655 B
C#

namespace SabreTools.Models.GCF
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
public sealed class ChecksumMapHeader
{
/// <summary>
/// Always 0x14893721
/// </summary>
public uint Dummy0 { get; set; }
/// <summary>
/// Always 0x00000001
/// </summary>
public uint Dummy1 { get; set; }
/// <summary>
/// Number of items.
/// </summary>
public uint ItemCount { get; set; }
/// <summary>
/// Number of checksums.
/// </summary>
public uint ChecksumCount { get; set; }
}
}