2022-10-10 02:54:46 -04:00
|
|
|
// 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
|
|
|
|
{
|
2024-04-09 09:47:13 -04:00
|
|
|
/// <summary>
|
|
|
|
/// The base directory for the language files.
|
|
|
|
/// </summary>
|
|
|
|
string BasePath { get; set; }
|
2023-01-07 10:45:54 -05:00
|
|
|
|
2024-04-09 09:47:13 -04:00
|
|
|
/// <summary>
|
|
|
|
/// Get the text for the given id and key.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="id">The id of the text.</param>
|
|
|
|
/// <param name="key">The key of the text.</param>
|
|
|
|
/// <returns>The text for the given id and key.</returns>
|
|
|
|
string GetText(int id, int key);
|
2023-01-07 10:45:54 -05:00
|
|
|
}
|