Actually use CatchHealthProcessor for the ruleset

This commit is contained in:
Dan Balasescu 2023-11-24 13:46:41 +09:00
parent 4ba6450c77
commit bb66267634
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,8 @@ public class CatchRuleset : Ruleset, ILegacyRuleset
public override ScoreProcessor CreateScoreProcessor() => new CatchScoreProcessor();
public override HealthProcessor CreateHealthProcessor(double drainStartTime) => new CatchHealthProcessor(drainStartTime);
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new CatchBeatmapConverter(beatmap, this);
public override IBeatmapProcessor CreateBeatmapProcessor(IBeatmap beatmap) => new CatchBeatmapProcessor(beatmap);