Refactor to pass clockrate in constructor rather than deriving from mods

This commit is contained in:
Samuel Cattini-Schultz
2021-06-03 16:09:37 +10:00
parent 7cdef5cb0a
commit f51413ead9
11 changed files with 16 additions and 17 deletions

View File

@ -25,6 +25,6 @@ namespace osu.Game.Rulesets.EmptyScrolling
protected override IEnumerable<DifficultyHitObject> CreateDifficultyHitObjects(IBeatmap beatmap, double clockRate) => Enumerable.Empty<DifficultyHitObject>();
protected override Skill[] CreateSkills(IBeatmap beatmap, Mod[] mods) => new Skill[0];
protected override Skill[] CreateSkills(IBeatmap beatmap, Mod[] mods, double clockRate) => new Skill[0];
}
}