osu/osu.Game/Graphics/UserInterface/BackButton.cs

30 lines
877 B
C#
Raw Normal View History

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