Files
BinaryObjectScanner/BurnOutSharp.Models/Nitro/Cart.cs
2023-01-08 00:20:57 -08:00

33 lines
887 B
C#

namespace BurnOutSharp.Models.Nitro
{
/// <summary>
/// Represents a DS/DSi cart image
/// </summary>
public class Cart
{
/// <summary>
/// DS/DSi cart header
/// </summary>
public CommonHeader CommonHeader { get; set; }
/// <summary>
/// DSi extended cart header
/// </summary>
public ExtendedDSiHeader ExtendedDSiHeader { get; set; }
/// <summary>
/// Secure area, may be encrypted or decrypted
/// </summary>
public byte[] SecureArea { get; set; }
/// <summary>
/// Name table (folder allocation table, name list)
/// </summary>
public NameTable NameTable { get; set; }
/// <summary>
/// File allocation table
/// </summary>
public FileAllocationTableEntry[] FileAllocationTable { get; set; }
}
}