Fixed taiko swell hp and scoring

This commit is contained in:
Ivan Pavluk
2018-11-29 22:05:13 +07:00
parent 35d57f74bf
commit 2ca9864301
10 changed files with 69 additions and 43 deletions

View File

@ -0,0 +1,14 @@
// 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;
namespace osu.Game.Rulesets.Taiko.Judgements
{
public class TaikoSwellJudgement : TaikoJudgement
{
public override bool AffectsCombo => false;
protected override int NumericResultFor(HitResult result) => 0;
}
}