mirror of https://github.com/ppy/osu
Add missing xmldoc
This commit is contained in:
parent
d6618a99a3
commit
0daf8937e3
|
@ -64,8 +64,14 @@ public interface IBeatmapInfo : IHasOnlineID
|
|||
/// </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 @@ public interface IBeatmapMetadataInfo : IEquatable<IBeatmapMetadataInfo>
|
|||
/// </summary>
|
||||
string BackgroundFile { get; }
|
||||
|
||||
/// <summary>
|
||||
/// A user-presentable display title representing this metadata.
|
||||
/// </summary>
|
||||
string DisplayTitle
|
||||
{
|
||||
get
|
||||
|
@ -74,6 +77,9 @@ string DisplayTitle
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A user-presentable display title representing this metadata, with localisation handling for potentially romanisable fields.
|
||||
/// </summary>
|
||||
RomanisableString DisplayTitleRomanisable
|
||||
{
|
||||
get
|
||||
|
@ -86,6 +92,9 @@ RomanisableString DisplayTitleRomanisable
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// An array of all searchable terms provided in contained metadata.
|
||||
/// </summary>
|
||||
string[] SearchableTerms => new[]
|
||||
{
|
||||
Author,
|
||||
|
|
Loading…
Reference in New Issue