2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-09-26 16:13:34 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects
|
|
|
|
|
{
|
2020-10-02 05:20:55 +00:00
|
|
|
|
public class SliderRepeat : SliderEndCircle
|
2017-09-26 16:13:34 +00:00
|
|
|
|
{
|
2024-09-27 08:27:54 +00:00
|
|
|
|
public double PathProgress { get; set; }
|
|
|
|
|
|
2020-10-02 06:21:52 +00:00
|
|
|
|
public SliderRepeat(Slider slider)
|
|
|
|
|
: base(slider)
|
|
|
|
|
{
|
|
|
|
|
}
|
2017-09-26 16:13:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|