mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09: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;
|
|
}
|
|
}
|