1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:03:22 +08:00

Update usages to consume IRulesetStore

This commit is contained in:
Dean Herbert 2021-12-03 17:50:40 +09:00
parent a5df01ff47
commit c5e401d678

View File

@ -12,10 +12,10 @@ namespace osu.Game.Scoring.Legacy
/// </summary>
public class DatabasedLegacyScoreDecoder : LegacyScoreDecoder
{
private readonly RulesetStore rulesets;
private readonly IRulesetStore rulesets;
private readonly BeatmapManager beatmaps;
public DatabasedLegacyScoreDecoder(RulesetStore rulesets, BeatmapManager beatmaps)
public DatabasedLegacyScoreDecoder(IRulesetStore rulesets, BeatmapManager beatmaps)
{
this.rulesets = rulesets;
this.beatmaps = beatmaps;