mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-17 21:47:52 +00:00
38 lines
1007 B
C#
38 lines
1007 B
C#
namespace BurnOutSharp.Models.N3DS
|
|
{
|
|
/// <summary>
|
|
/// Represents a 3DS cart image
|
|
/// </summary>
|
|
public class Cart
|
|
{
|
|
/// <summary>
|
|
/// 3DS cart header
|
|
/// </summary>
|
|
public NCSDHeader Header { get; set; }
|
|
|
|
/// <summary>
|
|
/// 3DS card info header
|
|
/// </summary>
|
|
public CardInfoHeader CardInfoHeader { get; set; }
|
|
|
|
/// <summary>
|
|
/// 3DS development card info header
|
|
/// </summary>
|
|
public DevelopmentCardInfoHeader DevelopmentCardInfoHeader { get; set; }
|
|
|
|
/// <summary>
|
|
/// NCCH partitions
|
|
/// </summary>
|
|
public NCCHHeader[] Partitions { get; set; }
|
|
|
|
/// <summary>
|
|
/// NCCH extended headers
|
|
/// </summary>
|
|
public NCCHExtendedHeader[] ExtendedHeaders { get; set; }
|
|
|
|
/// <summary>
|
|
/// ExeFS headers associated with each partition
|
|
/// </summary>
|
|
public ExeFSHeader[] ExeFSHeaders { get; set; }
|
|
}
|
|
} |