Files

27 lines
644 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.GameHeader
2025-09-26 10:20:48 -04:00
{
/// <summary>
/// Icon/Title Data section for an NDS cart image
/// </summary>
public sealed class NitroIconTitleData
{
public ushort IconVersion { get; set; }
public ushort IconCRC16 { get; set; }
public string? IconCRCInfo { get; set; }
public string? JapaneseTitle { get; set; }
public string? EnglishTitle { get; set; }
public string? FrenchTitle { get; set; }
public string? GermanTitle { get; set; }
public string? SpanishTitle { get; set; }
public string? ItalianTitle { get; set; }
}
2026-01-27 12:03:01 -05:00
}