Update DifficultyCalculator to take an IWorkingBeatmap

This commit is contained in:
Dean Herbert
2021-11-15 18:19:23 +09:00
parent 960cecf3db
commit 62d670a3ca
27 changed files with 32 additions and 31 deletions

View File

@ -30,7 +30,7 @@ namespace osu.Game.Rulesets.EmptyFreeform
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) =>
new EmptyFreeformBeatmapConverter(beatmap, this);
public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) =>
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) =>
new EmptyFreeformDifficultyCalculator(this, beatmap);
public override IEnumerable<Mod> GetModsFor(ModType type)