using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.VPK
{
///
///
[StructLayout(LayoutKind.Sequential)]
public sealed class Header
{
///
/// Always 0x55aa1234.
///
public uint Signature;
public uint Version;
///
/// The size, in bytes, of the directory tree
///
public uint TreeSize;
}
}