1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-12 20:57:31 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
462 B
C#
Raw Normal View History

2019-06-21 15:04:10 +02:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Input;
2019-06-21 15:04:10 +02:00
namespace osu.Game.Graphics.UserInterface
{
public partial class OsuNumberBox : OsuTextBox
{
public OsuNumberBox()
{
InputProperties = new TextInputProperties(TextInputType.Number, false);
SelectAllOnFocus = true;
}
2019-06-21 15:04:10 +02:00
}
}