Move the CreateConvertibleReplayFrame() into the base ruleset class for avoid api breaking change in the customized ruleset.

This commit is contained in:
andy840119
2022-09-10 11:07:23 +08:00
parent 1398a7e11e
commit 3d7367a842
8 changed files with 15 additions and 19 deletions

View File

@ -188,7 +188,7 @@ namespace osu.Game.Rulesets.Catch
public int LegacyID => 2;
public IConvertibleReplayFrame CreateConvertibleReplayFrame() => new CatchReplayFrame();
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new CatchReplayFrame();
public override HitObjectComposer CreateHitObjectComposer() => new CatchHitObjectComposer(this);