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
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Judgements
|
|
|
|
{
|
|
|
|
public class HoldNoteTickJudgement : ManiaJudgement
|
|
|
|
{
|
2017-05-26 18:56:27 +08:00
|
|
|
public override bool AffectsCombo => false;
|
|
|
|
|
2017-05-26 18:29:47 +08:00
|
|
|
public override int NumericResultForScore(ManiaHitResult result) => 20;
|
|
|
|
public override int NumericResultForAccuracy(ManiaHitResult result) => 0; // Don't count ticks into accuracy
|
2017-05-24 19:45:01 +08:00
|
|
|
}
|
|
|
|
}
|