2017-02-07 12:59:30 +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
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
2017-05-04 22:07:24 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public class SettingsTextBox : SettingsItem<string>
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
2017-05-04 22:07:24 +08:00
|
|
|
|
protected override Drawable CreateControl() => new OsuTextBox();
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
2017-04-21 12:53:11 +08:00
|
|
|
|
}
|