Some i18nifiying

This commit is contained in:
Janet Blackquill 2022-10-21 16:12:04 -04:00
parent 39576e3180
commit f63b26ac76
31 changed files with 538 additions and 455 deletions

View file

@ -50,6 +50,19 @@ namespace TShockAPI
/// <param name="args">The format arguments.</param>
void ConsoleInfo(string format, params object[] args);
/// <summary>
/// Writes a warning message to the log and to the console.
/// </summary>
/// <param name="message">The message to be written.</param>
void ConsoleWarn(string message);
/// <summary>
/// Writes a warning message to the log and to the console.
/// </summary>
/// <param name="format">The format of the message to be written.</param>
/// <param name="args">The format arguments.</param>
void ConsoleWarn(string format, params object[] args);
/// <summary>
/// Writes an error message to the log and to the console.
/// </summary>