Revert previous player add flow via interface

This commit is contained in:
Dean Herbert
2020-12-18 17:07:38 +09:00
parent 99f2032fdf
commit bca4d83af7
4 changed files with 38 additions and 16 deletions

View File

@ -0,0 +1,14 @@
// 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.
using osu.Framework.Bindables;
namespace osu.Game.Screens.Play.HUD
{
public interface ILeaderboardScore
{
BindableDouble TotalScore { get; }
BindableDouble Accuracy { get; }
BindableInt Combo { get; }
}
}