예제 #1
0
파일: Rudeco.cs 프로젝트: mScule/Rudeco
 public void Interprete()
 {
     if (!backgroundProcess)
     {
         console.Interprete(input.text);
         output.Print(console.GetOutputOut() + '\n');
     }
 }
예제 #2
0
파일: Rudeco.cs 프로젝트: mScule/Rudeco
    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");
    }