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

19 lines
506 B
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-02-24 04:05:37 +00:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
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
}
}
}