Make DifficultyCalculator support mod applications

Fixes https://github.com/ppy/osu/issues/476.
This commit is contained in:
smoogipoo
2017-11-16 20:06:32 +09:00
parent f6bdfa9876
commit 62155e6dd5
11 changed files with 35 additions and 32 deletions

View File

@ -14,11 +14,8 @@ namespace osu.Game.Rulesets.Catch
{
}
protected override double CalculateInternal(Dictionary<string, string> categoryDifficulty)
{
return 0;
}
public override double Calculate(Dictionary<string, string> categoryDifficulty) => 0;
protected override BeatmapConverter<CatchBaseHit> CreateBeatmapConverter() => new CatchBeatmapConverter();
}
}
}