1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 20:17:34 +08:00
osu-lazer/osu.Game/Overlays/BeatmapSet/Buttons/HeaderButton.cs

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

26 lines
690 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 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
2017-09-13 10:41:10 +08:00
using osu.Framework.Graphics;
using osu.Game.Graphics.UserInterfaceV2;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.BeatmapSet.Buttons
2017-09-13 10:41:10 +08:00
{
public partial class HeaderButton : RoundedButton
2017-09-13 10:41:10 +08:00
{
public HeaderButton()
{
Height = 0;
RelativeSizeAxes = Axes.Y;
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
2017-11-28 06:20:44 +08:00
private void load()
{
BackgroundColour = Color4Extensions.FromHex(@"094c5f");
2017-09-13 10:41:10 +08:00
}
}
}