mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 15:19:50 -06:00
10 lines
244 B
C#
10 lines
244 B
C#
using Ryujinx.Common.Helper;
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|
{
|
|
public static class NumericCharacterValidation
|
|
{
|
|
public static bool IsNumeric(char value) => Patterns.Numeric.IsMatch(value.ToString());
|
|
}
|
|
}
|