mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 13:56:04 +00:00
19 lines
492 B
C#
19 lines
492 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.GCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class ChecksumMapEntry
|
|
{
|
|
/// <summary>
|
|
/// Number of checksums.
|
|
/// </summary>
|
|
public uint ChecksumCount;
|
|
|
|
/// <summary>
|
|
/// Index of first checksum.
|
|
/// </summary>
|
|
public uint FirstChecksumIndex;
|
|
}
|
|
} |