2023-06-22 16:37:25 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2020-07-21 09:22:37 +00:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
|
|
|
{
|
2022-11-24 05:32:20 +00:00
|
|
|
|
public partial class DrawableSpinnerBonusTick : DrawableSpinnerTick
|
2020-07-21 09:22:37 +00:00
|
|
|
|
{
|
2020-11-12 06:59:48 +00:00
|
|
|
|
public DrawableSpinnerBonusTick()
|
|
|
|
|
: base(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-21 09:22:37 +00:00
|
|
|
|
public DrawableSpinnerBonusTick(SpinnerBonusTick spinnerTick)
|
|
|
|
|
: base(spinnerTick)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|