Merge pull request #7256 from peppy/remove-ruleset-ctor-param

Remove RulesetInfo parameter from Ruleset constructor
This commit is contained in:
Dean Herbert
2019-12-18 18:42:42 +09:00
committed by GitHub
9 changed files with 6 additions and 36 deletions

View File

@ -194,11 +194,6 @@ namespace osu.Game.Tests.Visual.Gameplay
private class TestScrollingRuleset : Ruleset
{
public TestScrollingRuleset(RulesetInfo rulesetInfo = null)
: base(rulesetInfo)
{
}
public override IEnumerable<Mod> GetModsFor(ModType type) => throw new NotImplementedException();
public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod> mods = null) => new TestDrawableScrollingRuleset(this, beatmap, mods);