BITKit/Packages/Core/Translate/ITranslator.cs

13 lines
320 B
C#
Raw Normal View History

2023-06-05 19:57:17 +08:00
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;
}
}