Example #1
0
        public static void Initalize()
        {
            if (IsInitalized)
            {
                return;
            }

            Lines = new List <string>();
            Lines.Add("");
            BuildCommandLine();
            ConsoleWriteLine("Riddlersoft Testing Console Version 1.0");
            ConsoleWriteLine("");
            Kernal.SetCallback(CommandCompleate); //set the callback
            IsInitalized   = true;
            Kernal.OnError = OnError;
        }