No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ITextPreProcessor.cs 429B

1234567891011121314151617
  1. 
  2. namespace TMPro
  3. {
  4. /// <summary>
  5. /// Interface used for preprocessing and shaping of text.
  6. /// </summary>
  7. public interface ITextPreprocessor
  8. {
  9. /// <summary>
  10. /// Function used for preprocessing of text
  11. /// </summary>
  12. /// <param name="text">Source text to be processed</param>
  13. /// <returns>Processed text</returns>
  14. string PreprocessText(string text);
  15. }
  16. }