1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/BackButton.cs

28 lines
788 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-11-27 09:21:12 +08:00
2016-12-05 20:09:41 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
2016-11-27 09:21:12 +08:00
using osu.Framework.Graphics;
namespace osu.Game.Graphics.UserInterface
{
2017-01-27 20:08:36 +08:00
public class BackButton : TwoLayerButton
2016-11-27 09:21:12 +08:00
{
public BackButton()
{
2017-01-27 20:08:36 +08:00
Text = @"Back";
Icon = FontAwesome.fa_osu_left_o;
Anchor = Anchor.BottomLeft;
Origin = Anchor.BottomLeft;
2016-11-27 10:48:31 +08:00
}
2016-12-05 20:09:41 +08:00
[BackgroundDependencyLoader]
private void load(AudioManager audio, OsuColour colours)
2016-12-05 20:09:41 +08:00
{
BackgroundColour = colours.Pink;
2017-01-27 20:08:36 +08:00
HoverColour = colours.PinkDark;
2016-11-27 09:21:12 +08:00
}
}
}