namespace TMPro
{
///
/// Interface used for preprocessing and shaping of text.
///
public interface ITextPreprocessor
{
///
/// Function used for preprocessing of text
///
/// Source text to be processed
/// Processed text
string PreprocessText(string text);
}
}