more stuf
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user