1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 20:07:26 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Judgements/HoldNoteTickJudgement.cs

14 lines
450 B
C#
Raw Normal View History

// 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;
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;
}
}