A game about forced loneliness, made by TACStudios
1using UnityEngine;
2using System.Collections;
3
4
5namespace TMPro
6{
7 /// <summary>
8 /// Custom text input validator where user can implement their own custom character validation.
9 /// </summary>
10 [System.Serializable]
11 public abstract class TMP_InputValidator : ScriptableObject
12 {
13 public abstract char Validate(ref string text, ref int pos, char ch);
14 }
15}