mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-22 08:42:13 +00:00
32 lines
880 B
C#
32 lines
880 B
C#
namespace SabreTools.Models.N3DS
|
|
{
|
|
/// <see href="https://www.3dbrew.org/wiki/CIA#Meta"/>
|
|
public sealed class MetaData
|
|
{
|
|
/// <summary>
|
|
/// Title ID dependency list - Taken from the application's ExHeader
|
|
/// </summary>
|
|
/// TODO: Determine numeric format of each entry
|
|
public byte[]? TitleIDDependencyList { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte[]? Reserved1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Core Version
|
|
/// </summary>
|
|
public uint CoreVersion { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte[]? Reserved2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Icon Data(.ICN) - Taken from the application's ExeFS
|
|
/// </summary>
|
|
public byte[]? IconData { get; set; }
|
|
}
|
|
} |