mirror of
https://github.com/osukey/osukey.git
synced 2025-08-01 21:58:46 +09:00
Pass a score to the replay recorder to allow reading more general scoring data
This commit is contained in:
@ -17,6 +17,7 @@ using osu.Game.Replays;
|
||||
using osu.Game.Rulesets.Mods;
|
||||
using osu.Game.Rulesets.Objects;
|
||||
using osu.Game.Rulesets.UI.Scrolling;
|
||||
using osu.Game.Scoring;
|
||||
using osu.Game.Skinning;
|
||||
using osuTK;
|
||||
|
||||
@ -82,6 +83,6 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
|
||||
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new TaikoFramedReplayInputHandler(replay);
|
||||
|
||||
protected override ReplayRecorder CreateReplayRecorder(Replay replay) => new TaikoReplayRecorder(replay);
|
||||
protected override ReplayRecorder CreateReplayRecorder(Score score) => new TaikoReplayRecorder(score);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user