Files
SabreTools.Models/GCF/ChecksumMapHeader.cs

26 lines
655 B
C#
Raw Permalink Normal View History

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