mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:43:05 +08:00
Add missing xmldoc
This commit is contained in:
parent
d6618a99a3
commit
0daf8937e3
@ -64,8 +64,14 @@ namespace osu.Game.Beatmaps
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
double StarRating { get; }
|
double StarRating { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A user-presentable display title representing this metadata.
|
||||||
|
/// </summary>
|
||||||
string DisplayTitle => $"{Metadata} {versionString}".Trim();
|
string DisplayTitle => $"{Metadata} {versionString}".Trim();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A user-presentable display title representing this beatmap, with localisation handling for potentially romanisable fields.
|
||||||
|
/// </summary>
|
||||||
RomanisableString DisplayTitleRomanisable
|
RomanisableString DisplayTitleRomanisable
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
@ -65,6 +65,9 @@ namespace osu.Game.Beatmaps
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
string BackgroundFile { get; }
|
string BackgroundFile { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A user-presentable display title representing this metadata.
|
||||||
|
/// </summary>
|
||||||
string DisplayTitle
|
string DisplayTitle
|
||||||
{
|
{
|
||||||
get
|
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
|
RomanisableString DisplayTitleRomanisable
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -86,6 +92,9 @@ namespace osu.Game.Beatmaps
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An array of all searchable terms provided in contained metadata.
|
||||||
|
/// </summary>
|
||||||
string[] SearchableTerms => new[]
|
string[] SearchableTerms => new[]
|
||||||
{
|
{
|
||||||
Author,
|
Author,
|
||||||
|
Loading…
Reference in New Issue
Block a user