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

19 lines
506 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-02-24 12:05:37 +08:00
// 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
}
}
}