mirror of
https://github.com/osukey/osukey.git
synced 2025-05-19 12:37:38 +09:00
11 lines
474 B
C#
11 lines
474 B
C#
// 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
|
|
{
|
|
public override int NumericResultForScore(ManiaHitResult result) => 20;
|
|
public override int NumericResultForAccuracy(ManiaHitResult result) => 0; // Don't count ticks into accuracy
|
|
}
|
|
} |