diff options
Diffstat (limited to 'ShiftOS-TheRevival/API/ConsoleAPI.vb')
| -rw-r--r-- | ShiftOS-TheRevival/API/ConsoleAPI.vb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/API/ConsoleAPI.vb b/ShiftOS-TheRevival/API/ConsoleAPI.vb index c7b83d8..adb0d6f 100644 --- a/ShiftOS-TheRevival/API/ConsoleAPI.vb +++ b/ShiftOS-TheRevival/API/ConsoleAPI.vb @@ -9,6 +9,13 @@ Console.WindowState = FormWindowState.Maximized End Sub + Public Sub Console_Interpreters() + If Console.ShouldChange = True Then + Console.ChangeInterpreter = True + Console.ShouldChange = False + End If + End Sub + Public Sub NewLine(str As String) Console.TextBox1.Text = Console.TextBox1.Text & Environment.NewLine & str End Sub |
