This creates console-based interfaces. Supports console packages such as chalk and emoji-list.
Clears the console, making it empty.
EasyConsoleInterface.ClearConsole()
Creates the current GUI interface. It takes in a string for title (can be ascii art) and an array for the commands as well as a callback for once it's done.
EasyConsoleInterface.CreateGUI(
'Example GUI',
'blue',
'blueBright',
[
{"name": "Print Hello!", "command":console.log, "parameters":["Hello", "!"]},
{"name": "Print Hello World!", "command":console.log, "parameters":["Hello", "World", "!"]}
],
() => {
EasyConsoleInterface.ClearConsole();
})