2018-01-05 20:21:19 +09:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-03-29 18:16:26 +09:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Judgements
|
2017-03-29 18:16:26 +09:00
|
|
|
|
{
|
2017-09-06 17:02:13 +09:00
|
|
|
|
public class TaikoStrongHitJudgement : TaikoJudgement
|
2017-03-29 18:16:26 +09:00
|
|
|
|
{
|
2017-09-12 19:39:22 +09:00
|
|
|
|
public override bool AffectsCombo => false;
|
|
|
|
|
|
2017-09-06 17:02:13 +09:00
|
|
|
|
public TaikoStrongHitJudgement()
|
2017-03-29 18:16:26 +09:00
|
|
|
|
{
|
2017-11-02 21:55:50 +09:00
|
|
|
|
Final = true;
|
2017-03-29 18:16:26 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|