using System.Runtime.InteropServices;
namespace SabreTools.Models.VPK
{
///
/// Added in version 2.
///
///
[StructLayout(LayoutKind.Sequential)]
public sealed class ExtendedHeader
{
///
/// Reserved
///
public uint Dummy0;
///
/// Archive hash length
///
public uint ArchiveHashLength;
///
/// Looks like some more MD5 hashes.
///
public uint ExtraLength;
///
/// Reserved
///
public uint Dummy1;
}
}