10 lines
183 B
C#
10 lines
183 B
C#
using System.Text;
|
|
|
|
namespace Coffee.UISoftMaskInternal.AssetModification
|
|
{
|
|
internal interface ITextModifier
|
|
{
|
|
bool ModifyText(StringBuilder sb, string text);
|
|
}
|
|
}
|