2019-01-24 17:43:03 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-12-30 21:23:18 +01:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Judgements
|
2017-03-23 17:52:46 +09:00
|
|
|
|
{
|
2017-03-23 19:36:58 +09:00
|
|
|
|
public class TaikoDrumRollTickJudgement : TaikoJudgement
|
2017-03-23 17:52:46 +09:00
|
|
|
|
{
|
2022-08-05 16:30:07 +02:00
|
|
|
|
public override HitResult MaxResult => HitResult.SmallBonus;
|
2018-12-04 21:20:44 +07:00
|
|
|
|
|
2022-08-05 16:30:07 +02:00
|
|
|
|
protected override double HealthIncreaseFor(HitResult result) => 0;
|
2017-03-23 17:52:46 +09:00
|
|
|
|
}
|
2017-12-30 21:23:18 +01:00
|
|
|
|
}
|