mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
33 lines
957 B
C#
33 lines
957 B
C#
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Audio;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public class SkipButton : TwoLayerButton
|
|
{
|
|
private readonly double skipDestination;
|
|
|
|
public SkipButton()
|
|
{
|
|
Text = @"Skip";
|
|
Icon = FontAwesome.fa_osu_right_o;
|
|
Anchor = Anchor.BottomRight;
|
|
Origin = Anchor.BottomRight;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(AudioManager audio, OsuColour colours)
|
|
{
|
|
ActivationSound = audio.Sample.Get(@"Menu/menuhit");
|
|
Colour = colours.Yellow;
|
|
HoverColour = colours.YellowDark;
|
|
}
|
|
}
|
|
}
|