Files

22 lines
527 B
C#
Raw Permalink Normal View History

2025-09-26 10:57:15 -04:00
using System.Runtime.InteropServices;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.VPK
2025-09-26 10:57:15 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VPKFile.h"/>
[StructLayout(LayoutKind.Sequential)]
public sealed class ArchiveHash
{
public uint ArchiveIndex;
public uint ArchiveOffset;
public uint Length;
/// <summary>
/// MD5
/// </summary>
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 0x10)]
public byte[] Hash = new byte[0x10];
2025-09-26 10:57:15 -04:00
}
}