2020-12-18 16:07:38 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-18 16:07:38 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
|
|
{
|
|
|
|
public interface ILeaderboardScore
|
|
|
|
{
|
2022-11-07 06:59:27 +08:00
|
|
|
BindableLong TotalScore { get; }
|
2020-12-18 16:07:38 +08:00
|
|
|
BindableDouble Accuracy { get; }
|
|
|
|
BindableInt Combo { get; }
|
2020-12-26 10:43:10 +08:00
|
|
|
|
|
|
|
BindableBool HasQuit { get; }
|
2022-09-14 13:18:12 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// An optional value to guarantee stable ordering.
|
|
|
|
/// Lower numbers will appear higher in cases of <see cref="TotalScore"/> ties.
|
|
|
|
/// </summary>
|
|
|
|
Bindable<long> DisplayOrder { get; }
|
2020-12-18 16:07:38 +08:00
|
|
|
}
|
|
|
|
}
|