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");
}
// TODO: Handle removing history when it gets very long. Very long console logs might cause problems when displaying new prints.
/// <summary>
/// Prints text into the Console.
/// </summary>
/// <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) {
TextField.text += text;
}