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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;
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
{
public partial class ElongatedCirclePiece : CirclePiece
{
2017-08-03 20:19:50 +09:30
public ElongatedCirclePiece()
{
2017-08-03 13:53:12 +09:30
RelativeSizeAxes = Axes.Y;
}
2018-04-13 18:19:50 +09:00
2020-04-15 18:44:12 +09:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
AccentColour = colours.YellowDark;
}
protected override void Update()
{
base.Update();
Width = Parent!.DrawSize.X + DrawHeight;
}
}
2017-04-21 13:45:11 +09:00
}