Remove RulesetInfo parameter from Ruleset constructor

This commit is contained in:
Dean Herbert
2019-12-18 14:49:09 +09:00
parent b841b78cad
commit 6e0802e50c
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);