2017-02-24 12:05:37 +08:00
|
|
|
|
// 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.Game.Graphics;
|
2017-02-27 11:35:13 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-02-24 12:05:37 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Dialog
|
|
|
|
|
{
|
2017-02-27 11:35:13 +08:00
|
|
|
|
public class PopupDialogButton : DialogButton
|
2017-02-24 12:05:37 +08:00
|
|
|
|
{
|
|
|
|
|
public PopupDialogButton()
|
|
|
|
|
{
|
2017-02-27 11:35:13 +08:00
|
|
|
|
Height = 50;
|
|
|
|
|
BackgroundColour = OsuColour.FromHex(@"150e14");
|
|
|
|
|
TextSize = 18;
|
2017-02-24 12:05:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|