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

@ -137,10 +137,5 @@ namespace osu.Game.Rulesets.Catch
public override int? LegacyID => 2;
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new CatchReplayFrame();
public CatchRuleset(RulesetInfo rulesetInfo = null)
: base(rulesetInfo)
{
}
}
}