1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:07:21 +08:00

30 lines
754 B
C#
Raw Normal View History

// 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 18:19:50 +09:00
2020-04-15 18:44:12 +09:00
using osu.Framework.Allocation;
2018-04-13 18:19:50 +09:00
using osu.Framework.Graphics;
2020-04-15 18:44:12 +09:00
using osu.Game.Graphics;
2018-04-13 18:19:50 +09:00
2020-12-07 12:30:25 +09:00
namespace osu.Game.Rulesets.Taiko.Skinning.Default
2018-04-13 18:19:50 +09:00
{
2022-11-24 14:32:20 +09:00
public partial class ElongatedCirclePiece : CirclePiece
2018-04-13 18:19:50 +09:00
{
public ElongatedCirclePiece()
{
RelativeSizeAxes = Axes.Y;
}
2020-04-15 18:44:12 +09:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
AccentColour = colours.YellowDark;
}
2018-04-13 18:19:50 +09:00
protected override void Update()
{
base.Update();
Width = Parent!.DrawSize.X + DrawHeight;
2018-04-13 18:19:50 +09:00
}
}
}