mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 05:35:17 +00:00
18 lines
369 B
C#
18 lines
369 B
C#
namespace BinaryObjectScanner.Models.VPK
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VPKFile.h"/>
|
|
public sealed class ArchiveHash
|
|
{
|
|
public uint ArchiveIndex;
|
|
|
|
public uint ArchiveOffset;
|
|
|
|
public uint Length;
|
|
|
|
/// <summary>
|
|
/// MD5
|
|
/// </summary>
|
|
public byte[] Hash;
|
|
}
|
|
}
|