Brought back editorconfig

- Fully commented CSTNet code :D
This commit is contained in:
Tony Bark 2023-01-07 10:45:54 -05:00
parent ec7c191d90
commit 63b4410d65
7 changed files with 196 additions and 10 deletions

View file

@ -4,6 +4,16 @@ namespace CSTNet;
public interface IUIText
{
/// <summary>
/// The base directory for the language files.
/// </summary>
string[] BasePath { get; set; }
/// <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);
}
}