osu/osu.Game/Overlays/Dialog/PopupDialogButton.cs

21 lines
567 B
C#
Raw Normal View History

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