Make IBeatmapConverter an abstract class instead of an interface.

This commit is contained in:
smoogipooo
2017-04-18 09:38:52 +09:00
parent 456aee63ca
commit efc050a95a
16 changed files with 29 additions and 34 deletions

View File

@ -22,7 +22,7 @@ namespace osu.Game.Modes.Catch.UI
public override ScoreProcessor CreateScoreProcessor() => new CatchScoreProcessor(this);
protected override IBeatmapConverter<CatchBaseHit> CreateBeatmapConverter() => new CatchBeatmapConverter();
protected override BeatmapConverter<CatchBaseHit> CreateBeatmapConverter() => new CatchBeatmapConverter();
protected override IBeatmapProcessor<CatchBaseHit> CreateBeatmapProcessor() => new CatchBeatmapProcessor();