Refactor identifiers and add subtitle UI

This commit is contained in:
2026-05-17 11:56:08 +01:00
parent 3174079e37
commit 9f9ef72390
25 changed files with 276 additions and 6871 deletions

View File

@@ -62,7 +62,7 @@ namespace BriarQueen.Framework.Services.Tutorials
/// </summary>
public string ResolveText(TutorialPopupID id)
{
if (!TutorialPopupTexts.AllPopups.TryGetValue(id, out var template))
if (!TutorialPopupTexts.TryGet(id, out var template))
return string.Empty;
return ResolveText(template);
@@ -101,4 +101,4 @@ namespace BriarQueen.Framework.Services.Tutorials
return string.IsNullOrWhiteSpace(displayString) ? string.Empty : displayString;
}
}
}
}