Files
SabreTools.Models/N3DS/MetaData.cs

32 lines
880 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.N3DS
2023-09-04 00:11:04 -04:00
{
/// <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
2023-09-10 21:24:10 -04:00
public byte[]? TitleIDDependencyList { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2023-09-10 21:24:10 -04:00
public byte[]? Reserved1 { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Core Version
/// </summary>
2023-09-10 21:24:10 -04:00
public uint CoreVersion { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2023-09-10 21:24:10 -04:00
public byte[]? Reserved2 { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Icon Data(.ICN) - Taken from the application's ExeFS
/// </summary>
2023-09-10 21:24:10 -04:00
public byte[]? IconData { get; set; }
2023-09-04 00:11:04 -04:00
}
}