xyi/Library/PackageCache/com.unity.ugui@19db204a6265/Runtime/TMP/ITextPreProcessor.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

18 lines
429 B
C#

namespace TMPro
{
/// <summary>
/// Interface used for preprocessing and shaping of text.
/// </summary>
public interface ITextPreprocessor
{
/// <summary>
/// Function used for preprocessing of text
/// </summary>
/// <param name="text">Source text to be processed</param>
/// <returns>Processed text</returns>
string PreprocessText(string text);
}
}