mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
25 lines
709 B
C#
25 lines
709 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.Modes.Taiko.Judgements
|
|
{
|
|
public class TaikoDrumRollTickJudgementInfo : TaikoJudgementInfo
|
|
{
|
|
protected override int NumericResultForScore(TaikoHitResult result)
|
|
{
|
|
switch (result)
|
|
{
|
|
default:
|
|
return 0;
|
|
case TaikoHitResult.Great:
|
|
return 200;
|
|
}
|
|
}
|
|
|
|
protected override int NumericResultForAccuracy(TaikoHitResult result)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|