Provide scores directly to Player instance rather than relying on DI

This commit is contained in:
Dean Herbert
2022-09-16 18:15:17 +09:00
parent 0227eddda1
commit 4c4fdfd153
6 changed files with 24 additions and 39 deletions

View File

@ -1,15 +0,0 @@
// 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.Allocation;
using osu.Framework.Bindables;
using osu.Game.Scoring;
namespace osu.Game.Online.Leaderboards
{
[Cached]
public interface ILeaderboardScoreSource
{
IBindableList<ScoreInfo> Scores { get; }
}
}