mirror of
https://github.com/osukey/osukey.git
synced 2025-05-06 14:17:27 +09:00
18 lines
324 B
C#
18 lines
324 B
C#
using osu.Game.Modes.Objects.Drawables;
|
|
|
|
namespace osu.Game.Modes.Osu.Objects.Drawables
|
|
{
|
|
class DrawableSlider : DrawableHitObject
|
|
{
|
|
public DrawableSlider(Slider h) : base(h)
|
|
{
|
|
|
|
}
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|