mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
30 lines
685 B
C#
30 lines
685 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.NCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/NCFFile.h"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class ChecksumMapHeader
|
|
{
|
|
/// <summary>
|
|
/// Always 0x14893721
|
|
/// </summary>
|
|
public uint Dummy0;
|
|
|
|
/// <summary>
|
|
/// Always 0x00000001
|
|
/// </summary>
|
|
public uint Dummy1;
|
|
|
|
/// <summary>
|
|
/// Number of items.
|
|
/// </summary>
|
|
public uint ItemCount;
|
|
|
|
/// <summary>
|
|
/// Number of checksums.
|
|
/// </summary>
|
|
public uint ChecksumCount;
|
|
}
|
|
}
|