mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 01:07:25 +08:00
27 lines
844 B
C#
27 lines
844 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 OpenTK.Graphics;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Audio;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Pause
|
|
{
|
|
public class QuitButton : PauseButton
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(AudioManager audio, OsuColour colours)
|
|
{
|
|
ButtonColour = new Color4(170, 27, 39, 255); // The red from the design isn't in the palette so it's used directly
|
|
SampleHover = audio.Sample.Get(@"Menu/menuclick");
|
|
SampleClick = audio.Sample.Get(@"Menu/menuback");
|
|
}
|
|
|
|
public QuitButton()
|
|
{
|
|
Text = @"Quit to Main Menu";
|
|
}
|
|
}
|
|
}
|