Sdk/Console: Add Clear method

Former-commit-id: 6230bf71538d3436cd1c247e9645e54fff0e0a2d
This commit is contained in:
Lynix
2016-04-01 18:57:07 +02:00
parent 9a472a4a1c
commit 8732cc9459
2 changed files with 14 additions and 1 deletions

View File

@@ -92,6 +92,12 @@ namespace Ndk
RefreshHistory();
}
void Console::Clear()
{
m_historyLines.clear();
RefreshHistory();
}
void Console::SendCharacter(char32_t character)
{
switch (character)