1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-12 23:07:26 +08:00

15 lines
426 B
C#
Raw Normal View History

2018-05-16 19:43:01 +09:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Mania.Judgements
{
public class HoldNoteJudgement : ManiaJudgement
{
public override bool AffectsCombo => false;
2018-06-09 18:14:33 -07:00
2018-05-16 19:43:01 +09:00
protected override int NumericResultFor(HitResult result) => 0;
}
}