more stuf

This commit is contained in:
GoaLitiuM
2021-05-29 13:27:11 +03:00
parent f3c3225442
commit f821959896
56 changed files with 60617 additions and 96 deletions

View File

@@ -92,6 +92,9 @@ namespace Cabrito
// Closes the Console
public static void Close() => instance.Close();
// Clears the content of the Console
public static void Clear() => instance.Clear();
public static void Execute(string str) => instance.Execute(str);
public static string GetVariable(string variableName) => instance.GetVariable(variableName);
@@ -299,6 +302,12 @@ namespace Cabrito
stopwatch.Restart();
}
// Clears the content of the Console
public void Clear()
{
consoleLines.Clear();
}
public void Execute(string str)
{
str = str.Trim();