2017-05-24 19:45:01 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2017-09-05 18:44:59 +08:00
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
2017-05-24 19:45:01 +08:00
|
|
|
namespace osu.Game.Rulesets.Mania.Judgements
|
|
|
|
{
|
|
|
|
public class HoldNoteTickJudgement : ManiaJudgement
|
|
|
|
{
|
2017-05-26 18:56:27 +08:00
|
|
|
public override bool AffectsCombo => false;
|
|
|
|
|
2017-09-05 18:44:59 +08:00
|
|
|
protected override int NumericResultFor(HitResult result) => 20;
|
2017-05-24 19:45:01 +08:00
|
|
|
}
|
|
|
|
}
|