1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 14:12:54 +08:00

Add xmldocs

This commit is contained in:
Pasi4K5 2023-09-29 13:44:11 +02:00
parent 74896fd6b2
commit 23c20ca5f4

View File

@ -46,6 +46,10 @@ namespace osu.Game.Screens.Select
};
public OptionalTextFilter[] SearchTerms = Array.Empty<OptionalTextFilter>();
/// <summary>
/// Search terms that are used for searching difficulty names.
/// </summary>
public OptionalTextFilter[] DifficultySearchTerms = Array.Empty<OptionalTextFilter>();
public RulesetInfo? Ruleset;
@ -74,6 +78,10 @@ namespace osu.Game.Screens.Select
}
}
/// <summary>
/// Extracts the search terms from the provided <see cref="string"/>
/// and stores them in <see cref="DifficultySearchTerms"/>.
/// </summary>
public string DifficultySearchText
{
set => DifficultySearchTerms = getTermsFromSearchText(value);