1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game/Overlays/Dialog/PopupDialogButton.cs

19 lines
506 B
C#
Raw Normal View History

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
}
}
}