mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
17 lines
429 B
C#
17 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);
|
|
}
|
|
}
|