BITFALL/Assets/BITKit/Core/Translate/ITranslator.cs

12 lines
261 B
C#
Raw Normal View History

2023-08-12 01:43:24 +08:00
using System;
namespace BITKit
{
public interface ITranslator
{
string Translate(string rawString);
string[] GetAllSourceText();
event Action<string> OnChangeLanguage;
event Func<string[]> OnCollageAllSourceText;
}
}