mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-26 18:52:20 +00:00
22 lines
477 B
C#
22 lines
477 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 { get; set; }
|
|
|
|
public uint ArchiveOffset { get; set; }
|
|
|
|
public uint Length { get; set; }
|
|
|
|
/// <summary>
|
|
/// MD5
|
|
/// </summary>
|
|
#if NET48
|
|
public byte[] Hash { get; set; }
|
|
#else
|
|
public byte[]? Hash { get; set; }
|
|
#endif
|
|
}
|
|
}
|