mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 22:28:20 +08:00
25 lines
691 B
C#
25 lines
691 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
|
|
{
|
|
public readonly DrawableHitObject MainObject;
|
|
|
|
protected DrawableStrongHitObject(StrongHitObject strong, DrawableHitObject mainObject)
|
|
: base(strong)
|
|
{
|
|
MainObject = mainObject;
|
|
|
|
AlwaysPresent = true;
|
|
}
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
{
|
|
}
|
|
}
|
|
}
|