mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 13:37:25 +08:00
Add missing xmldoc
This commit is contained in:
parent
d6618a99a3
commit
0daf8937e3
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user