mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
22 lines
412 B
C#
22 lines
412 B
C#
namespace SabreTools.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>
|
|
#if NET48
|
|
public byte[] Hash;
|
|
#else
|
|
public byte[]? Hash;
|
|
#endif
|
|
}
|
|
}
|