예제 #1
0
파일: Program.cs 프로젝트: decoy/ConsoleBox
        static void Start(IConsoleBox box)
        {
            box.Initialize();
            var app = new WidgetApplication(box, () => new DemoApp());

            //await app.Start();
            app.StartSync();

            //var test = new TestingApp(box);
            box.PollEvents();

            box.ShutDown();
        }