mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 15:12:57 +08:00
21 lines
568 B
C#
21 lines
568 B
C#
// 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.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
{
|
|
public abstract class DrawableStrongHitObject : DrawableTaikoHitObject
|
|
{
|
|
protected DrawableStrongHitObject(StrongHitObject strong)
|
|
: base(strong)
|
|
{
|
|
AlwaysPresent = true;
|
|
}
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
{
|
|
}
|
|
}
|
|
}
|