1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-06 00:44:18 +08:00
Files
osu-lazer/osu.Game/Screens/Edit/Screens/Setup/Components/SetupTextBox.cs
T
2018-07-24 09:21:01 +03:00

17 lines
487 B
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Screens.Edit.Screens.Setup.Components
{
public class SetupTextBox : OsuTextBox
{
protected override float LeftRightPadding => 15;
}
}