using System.Runtime.InteropServices;
namespace SabreTools.Models.N3DS
{
///
[StructLayout(LayoutKind.Sequential)]
public sealed class ARM9AccessControl
{
///
/// Descriptors
///
/// 15 bytes
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 15)]
public byte[]? Descriptors;
///
/// ARM9 Descriptor Version. Originally this value had to be ≥ 2.
/// Starting with 9.3.0-X this value has to be either value 2 or value 3.
///
public byte DescriptorVersion;
}
}