1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 07:14:10 +08:00

Add missing xmldoc

This commit is contained in:
Dean Herbert
2021-10-01 17:33:57 +09:00
Unverified
parent d6618a99a3
commit 0daf8937e3
2 changed files with 15 additions and 0 deletions
+6
View File
@@ -64,8 +64,14 @@ namespace osu.Game.Beatmaps
/// </summary>
double StarRating { get; }
/// <summary>
/// A user-presentable display title representing this metadata.
/// </summary>
string DisplayTitle => $"{Metadata} {versionString}".Trim();
/// <summary>
/// A user-presentable display title representing this beatmap, with localisation handling for potentially romanisable fields.
/// </summary>
RomanisableString DisplayTitleRomanisable
{
get
@@ -65,6 +65,9 @@ namespace osu.Game.Beatmaps
/// </summary>
string BackgroundFile { get; }
/// <summary>
/// A user-presentable display title representing this metadata.
/// </summary>
string DisplayTitle
{
get
@@ -74,6 +77,9 @@ namespace osu.Game.Beatmaps
}
}
/// <summary>
/// A user-presentable display title representing this metadata, with localisation handling for potentially romanisable fields.
/// </summary>
RomanisableString DisplayTitleRomanisable
{
get
@@ -86,6 +92,9 @@ namespace osu.Game.Beatmaps
}
}
/// <summary>
/// An array of all searchable terms provided in contained metadata.
/// </summary>
string[] SearchableTerms => new[]
{
Author,