mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
22 lines
628 B
C#
22 lines
628 B
C#
// 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.Rulesets.Timing;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Timing.Drawables
|
|
{
|
|
public class DrawableScrollingTimingChange : DrawableManiaTimingChange
|
|
{
|
|
public DrawableScrollingTimingChange(TimingChange timingChange)
|
|
: base(timingChange)
|
|
{
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
Content.Y = (float)(TimingChange.Time - Time.Current);
|
|
}
|
|
}
|
|
} |