1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-05 20:32:56 +08:00

Fix post-merge errors.

This commit is contained in:
smoogipooo 2017-03-23 19:43:00 +09:00
parent 217fd14595
commit 315deb6f12
2 changed files with 9 additions and 1 deletions

View File

@ -31,6 +31,10 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
} }
} }
protected override void UpdateState(ArmedState state)
{
}
protected override void CheckJudgement(bool userTriggered) protected override void CheckJudgement(bool userTriggered)
{ {
if (userTriggered) if (userTriggered)

View File

@ -26,7 +26,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
this.tick = tick; this.tick = tick;
} }
protected override TaikoJudgementInfo CreateJudgementInfo() => new TaikoDrumRollTickJudgementInfo(); protected override TaikoJudgement CreateJudgement() => new TaikoDrumRollTickJudgement();
protected override void CheckJudgement(bool userTriggered) protected override void CheckJudgement(bool userTriggered)
{ {
@ -44,6 +44,10 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
} }
} }
protected override void UpdateState(ArmedState state)
{
}
protected override void UpdateScrollPosition(double time) protected override void UpdateScrollPosition(double time)
{ {
// Drum roll ticks shouldn't move // Drum roll ticks shouldn't move