1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 22:47:20 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
594 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-11-29 22:05:13 +07:00
2022-06-17 16:37:17 +09:00
#nullable disable
2018-11-29 22:05:13 +07:00
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Taiko.Judgements
{
public class TaikoSwellJudgement : TaikoJudgement
{
protected override double HealthIncreaseFor(HitResult result)
{
2018-12-10 05:05:03 +00:00
switch (result)
{
case HitResult.Miss:
return -0.65;
2019-04-01 12:44:46 +09:00
default:
return 0;
}
}
2018-11-29 22:05:13 +07:00
}
}