2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-10-21 13:58:03 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-10-21 10:46:06 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
2017-10-21 10:52:21 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2017-10-21 10:46:06 +08:00
|
|
|
|
{
|
2017-11-26 00:52:52 +08:00
|
|
|
|
public class SettingsButton : TriangleButton
|
2017-10-21 10:46:06 +08:00
|
|
|
|
{
|
|
|
|
|
public SettingsButton()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
Padding = new MarginPadding { Left = SettingsOverlay.CONTENT_MARGINS, Right = SettingsOverlay.CONTENT_MARGINS };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|