add OsuNumberBox with basic tests

This commit is contained in:
Unknown
2019-06-21 15:04:10 +02:00
committed by Aergwyn
parent 1c19d3a4fb
commit 16a4805f1f
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// 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.
namespace osu.Game.Graphics.UserInterface
{
public class OsuNumberBox : OsuTextBox
{
protected override bool CanAddCharacter(char character) => char.IsNumber(character);
}
}