Fix a TODO in DebugConsole.

This commit is contained in:
excitedneon 2017-05-09 01:23:55 +03:00
parent fca97636ea
commit 8b5c5b8d03

View File

@ -92,11 +92,11 @@ namespace Cyber.Console {
Print(text + "\n"); Print(text + "\n");
} }
// TODO: Handle removing history when it gets very long. Very long console logs might cause problems when displaying new prints.
/// <summary> /// <summary>
/// Prints text into the Console. /// Prints text into the Console.
/// </summary> /// </summary>
/// <param name="text">Text.</param> /// <param name="text">Text.</param>
/// \todo Handle removing history when it gets very long. Very long console logs might cause problems when displaying new prints.
public void Print(string text) { public void Print(string text) {
TextField.text += text; TextField.text += text;
} }