1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 15:12:50 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Judgements/HoldNoteTickJudgement.cs

15 lines
442 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08: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;
2017-09-05 18:44:59 +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;
}
}