A game about forced loneliness, made by TACStudios
at master 17 lines 429 B view raw
1 2 3namespace TMPro 4{ 5 /// <summary> 6 /// Interface used for preprocessing and shaping of text. 7 /// </summary> 8 public interface ITextPreprocessor 9 { 10 /// <summary> 11 /// Function used for preprocessing of text 12 /// </summary> 13 /// <param name="text">Source text to be processed</param> 14 /// <returns>Processed text</returns> 15 string PreprocessText(string text); 16 } 17}