mirror of
https://github.com/tonytins/cstdotnet.git
synced 2025-03-15 14:11:26 +00:00
9 lines
246 B
C#
9 lines
246 B
C#
|
// This project is licensed under the BSD 3-Clause license.
|
||
|
// See the LICENSE file in the project root for more information.
|
||
|
namespace CSTNet;
|
||
|
|
||
|
public interface IUIText
|
||
|
{
|
||
|
string[] BasePath { get; set; }
|
||
|
string GetText(int id, int key);
|
||
|
}
|