mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 16:27:26 +08:00
12 lines
281 B
C#
12 lines
281 B
C#
|
using osu.Game.Rulesets.Scoring;
|
|||
|
|
|||
|
namespace osu.Game.Rulesets.Taiko.Judgements
|
|||
|
{
|
|||
|
class TaikoDrumRollJudgement : TaikoJudgement
|
|||
|
{
|
|||
|
public override bool AffectsCombo => false;
|
|||
|
|
|||
|
protected override int NumericResultFor(HitResult result) => 0;
|
|||
|
}
|
|||
|
}
|