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