// 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
{
///
/// The base directory for the language files.
///
string BasePath { get; set; }
///
/// Get the text for the given id and key.
///
/// The id of the text.
/// The key of the text.
/// The text for the given id and key.
string GetText(int id, int key);
}