mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 13:52:16 +00:00
16 lines
420 B
C#
16 lines
420 B
C#
namespace BinaryObjectScanner.Models.GCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
|
|
public sealed class ChecksumMapEntry
|
|
{
|
|
/// <summary>
|
|
/// Number of checksums.
|
|
/// </summary>
|
|
public uint ChecksumCount;
|
|
|
|
/// <summary>
|
|
/// Index of first checksum.
|
|
/// </summary>
|
|
public uint FirstChecksumIndex;
|
|
}
|
|
} |