cstdotnet/CSTNet/IUIText.cs
Tony Bark e40ba5a904 IUIText interface for UIText class
- Added test to VSCode tasks
- New deploy keys
- Renamed dpkgpackage workflow to publish
- Bump to version to 2.0, beta 1
2022-10-10 02:54:46 -04:00

9 lines
No EOL
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);
}