1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 13:17:20 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Judgements/HoldNoteTickJudgement.cs

15 lines
442 B
C#
Raw Normal View History

2018-01-05 20:21:19 +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;
2017-09-05 19:44:59 +09:00
namespace osu.Game.Rulesets.Mania.Judgements
{
public class HoldNoteTickJudgement : ManiaJudgement
{
2017-05-26 19:56:27 +09:00
public override bool AffectsCombo => false;
2017-09-05 19:44:59 +09:00
protected override int NumericResultFor(HitResult result) => 20;
}
}