mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
29 lines
846 B
C#
29 lines
846 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Framework.Allocation;
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet
|
|
{
|
|
public class HeaderButton : TriangleButton
|
|
{
|
|
public HeaderButton()
|
|
{
|
|
Height = 0;
|
|
RelativeSizeAxes = Axes.Y;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
BackgroundColour = OsuColour.FromHex(@"094c5f");
|
|
Triangles.ColourLight = OsuColour.FromHex(@"0f7c9b");
|
|
Triangles.ColourDark = OsuColour.FromHex(@"094c5f");
|
|
Triangles.TriangleScale = 1.5f;
|
|
}
|
|
}
|
|
}
|