Make DrawableRuleset take a converted beatmap

This commit is contained in:
smoogipoo
2019-12-12 15:58:11 +09:00
parent d63ab362dc
commit 5861eca80d
23 changed files with 59 additions and 57 deletions

View File

@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Osu.UI
{
protected new OsuRulesetConfigManager Config => (OsuRulesetConfigManager)base.Config;
public DrawableOsuRuleset(Ruleset ruleset, IWorkingBeatmap beatmap, IReadOnlyList<Mod> mods)
public DrawableOsuRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods = null)
: base(ruleset, beatmap, mods)
{
}