1
This commit is contained in:
13
Core/Translate/ITranslator.cs
Normal file
13
Core/Translate/ITranslator.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user