1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00

Add xmldoc for GetDisplayScore

This commit is contained in:
Dean Herbert 2023-05-25 19:24:15 +09:00
parent 6d9ba9248d
commit 57c63dbb29

View File

@ -57,6 +57,10 @@ namespace osu.Game.Screens.Play.HUD
public BindableInt Combo { get; } = new BindableInt();
public BindableBool HasQuit { get; } = new BindableBool();
public Bindable<long> DisplayOrder { get; } = new Bindable<long>();
/// <summary>
/// A function providing a display score. If a custom function is not provided, this defaults to using <see cref="TotalScore"/>.
/// </summary>
public Func<ScoringMode, long> GetDisplayScore { get; set; }
public Color4? BackgroundColour { get; set; }