1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 04:57:24 +08:00
osu-lazer/osu.Game.Modes.Taiko/Objects/Drawables/DrawableStrongDrumRoll.cs

21 lines
690 B
C#
Raw Normal View History

2017-03-28 15:50:06 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Modes.Taiko.Judgements;
2017-04-04 11:38:55 +08:00
using osu.Game.Modes.Taiko.Objects.Drawables.Pieces;
2017-03-28 15:50:06 +08:00
2017-04-04 11:38:55 +08:00
namespace osu.Game.Modes.Taiko.Objects.Drawables
2017-03-28 15:50:06 +08:00
{
public class DrawableStrongDrumRoll : DrawableDrumRoll
{
public DrawableStrongDrumRoll(DrumRoll drumRoll)
: base(drumRoll)
{
}
protected override TaikoJudgement CreateJudgement() => new TaikoJudgement { SecondHit = true };
protected override CirclePiece CreateCirclePiece() => new StrongCirclePiece();
}
}