mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 23:57:18 +00:00
21 lines
808 B
C#
21 lines
808 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SabreTools.Models.Charts
|
|
{
|
|
/// <see href="https://github.com/TheNathannator/GuitarGame_ChartFormats/blob/main/doc/FileFormats/Other/Frets%20on%20Fire%20X/Careers.md"/>
|
|
/// <remarks>[titles]</remarks>
|
|
internal class TitlesIni
|
|
{
|
|
/// <summary>
|
|
/// A space-separated list of .ini sections to include in the career.
|
|
/// </summary>
|
|
/// <remarks>sections</remarks>
|
|
public string[]? SectionList { get; set; }
|
|
|
|
/// <summary>
|
|
/// `name` - Display name of the tier.
|
|
/// `unlock_id` - Name used for associating a song with this tier, and for checking unlock requirements.
|
|
/// </summary>
|
|
public Dictionary<string, (string? Name, string? UnlockId)>? Sections { get; set; }
|
|
}
|
|
} |