Files
BITKit/Core/Translate/ITranslator.cs
CortexCore 4565ff2e35 1
2023-06-05 16:25:06 +08:00

13 lines
320 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
namespace BITKit
{
public interface ITranslator
{
string Translate(string rawString);
string[] GetAllSourceText();
event Action<string> OnChangeLanguage;
event Func<string[]> OnCollageAllSourceText;
}
}