Make osu ruleset use the new health processor

This commit is contained in:
Dan Balasescu 2023-11-13 13:12:56 +09:00
parent 929570656d
commit 7713da499f
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,8 @@ public class OsuRuleset : Ruleset, ILegacyRuleset
public override ScoreProcessor CreateScoreProcessor() => new OsuScoreProcessor();
public override HealthProcessor CreateHealthProcessor(double drainStartTime) => new OsuHealthProcessor(drainStartTime);
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new OsuBeatmapConverter(beatmap, this);
public override IBeatmapProcessor CreateBeatmapProcessor(IBeatmap beatmap) => new OsuBeatmapProcessor(beatmap);