/* * @author: jos / George2000 * @copyright: byteEmu, 2012 - 2013 :) © */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace byteEmu { /// /// The main program of the emulator. This class cannot be used, automatic start-up. /// [Obsolete("Please use byteEnvironment. for using parts from your emulator.")] static class Program { private static void Main(string[] args) { do { Action mAction = new Action(byteEnvironment.BootUp); mAction.Invoke(); } while (!byteEnvironment.Started); while (byteEnvironment.Started) { Console.ReadLine(); } } } }