public void Interprete() { if (!backgroundProcess) { console.Interprete(input.text); output.Print(console.GetOutputOut() + '\n'); } }
private void Start() { // Initializing console customCommands = new Dictionary <string, CustomCommand>(); CustomCommandInit(); console = new Poy(customCommands); output.Print( console.GetOutputOut() + "To clear screen, write: $R@cls$W; \n"); }