Update usages to consume `IRulesetStore`

This commit is contained in:
Dean Herbert 2021-12-03 17:50:40 +09:00
parent a5df01ff47
commit c5e401d678
1 changed files with 2 additions and 2 deletions

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;