// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Bindables; using osu.Game.Rulesets.Scoring; namespace osu.Game.Screens.Play.HUD { public interface ILeaderboardScore { BindableLong TotalScore { get; } BindableDouble Accuracy { get; } BindableInt Combo { get; } BindableBool HasQuit { get; } /// /// An optional value to guarantee stable ordering. /// Lower numbers will appear higher in cases of ties. /// Bindable DisplayOrder { get; } /// /// A custom function which handles converting a score to a display score using a provide . /// /// /// If no function is provided, will be used verbatim. Func GetDisplayScore { set; } } }