Esempio n. 1
0
        protected override void Run()
        {
            string input = "";

            input = Console.ReadLine();
            CommandRegistrar.HandleCmd(input);

            if (this.isGuiModeActive)
            {
                Draw();
            }
        }
Esempio n. 2
0
 protected override void BeforeRun()
 {
     CommandRegistrar.Register(this);
     Console.WriteLine("Hypatia booted successfully.");
 }