ITextPreProcessor.cs 429 B

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. }