1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 10:27:45 +08:00
osu-lazer/osu.Game/Overlays/Settings/SettingsButton.cs

18 lines
559 B
C#
Raw Normal View History

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