Files
BinaryObjectScanner/BinaryObjectScanner.Models/N3DS/MetaData.cs

32 lines
820 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.N3DS
2023-01-06 15:20:10 -08:00
{
/// <see href="https://www.3dbrew.org/wiki/CIA#Meta"/>
2023-01-09 09:53:57 -08:00
public sealed class MetaData
2023-01-06 15:20:10 -08:00
{
/// <summary>
/// Title ID dependency list - Taken from the application's ExHeader
/// </summary>
2023-01-09 09:53:57 -08:00
/// TODO: Determine numeric format of each entry
2023-01-06 15:20:10 -08:00
public byte[] TitleIDDependencyList;
/// <summary>
/// Reserved
/// </summary>
public byte[] Reserved1;
/// <summary>
/// Core Version
/// </summary>
public uint CoreVersion;
/// <summary>
/// Reserved
/// </summary>
public byte[] Reserved2;
/// <summary>
/// Icon Data(.ICN) - Taken from the application's ExeFS
/// </summary>
public byte[] IconData;
}
}