using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.N3DS
{
///
[StructLayout(LayoutKind.Sequential)]
public sealed class SystemInfo
{
///
/// SaveData Size
///
public ulong SaveDataSize;
///
/// Jump ID
///
public ulong JumpID;
///
/// Reserved
///
/// 0x30 bytes
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 0x30)]
public byte[] Reserved = new byte[0x30];
}
}