2019-06-21 21:04:10 +08: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.
|
|
|
|
|
2021-12-15 14:13:24 +08:00
|
|
|
using osu.Framework.Extensions;
|
|
|
|
|
2019-06-21 21:04:10 +08:00
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
{
|
|
|
|
public class OsuNumberBox : OsuTextBox
|
|
|
|
{
|
2022-01-12 07:15:17 +08:00
|
|
|
protected override bool AllowIme => false;
|
|
|
|
|
2021-12-15 14:13:24 +08:00
|
|
|
protected override bool CanAddCharacter(char character) => character.IsAsciiDigit();
|
2019-06-21 21:04:10 +08:00
|
|
|
}
|
|
|
|
}
|