1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-14 18:37:28 +08:00

Add xmldoc explaining Ruleset bindable's usage

This commit is contained in:
Dean Herbert 2024-02-26 18:31:36 +08:00
parent b30a6d5224
commit 8e336610d0
No known key found for this signature in database

View File

@ -59,6 +59,13 @@ namespace osu.Game.Screens.Select.Details
}
}
/// <summary>
/// Ruleset to be used for certain elements of display.
/// When set, this will override the set <see cref="Beatmap"/>'s own ruleset.
/// </summary>
/// <remarks>
/// No checks are done as to whether the ruleset specified is valid for the currently <see cref="BeatmapInfo"/>.
/// </remarks>
public Bindable<RulesetInfo> Ruleset { get; } = new Bindable<RulesetInfo>();
public AdvancedStats(int columns = 1)