mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-22 08:42:13 +00:00
27 lines
656 B
C#
27 lines
656 B
C#
namespace SabreTools.Models.NCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/NCFFile.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; }
|
|
}
|
|
}
|