geometry-tower-defense/Assets/GameMain/Scripts/Definition/Ports/ITextService.cs

7 lines
129 B
C#

namespace GeometryTD.Core
{
public interface ITextService
{
string Get(string key, params object[] args);
}
}