示例#1
0
        static void Main()
        {
            //Console.WriteLine("Hello World!");

            LauncherMain m = new LauncherMain();
            m.init();
        }
示例#2
0
        public Updater(LauncherMain main)
        {
            log.WriteLine("App Updater ");

            this.main = main;
            //
            Thread t = new Thread(new ThreadStart(this.Run));
            t.Start();
        }
示例#3
0
文件: App.cs 项目: jeukku/launcher
        public App(LauncherMain main)
        {
            this.main = main;

            Directory.CreateDirectory(Path.Combine(main.getProperties().getApplicationPath(), "logs"));

            log.WriteLine("application path " + main.getProperties().getApplicationPath());

            Thread t = new Thread(new ThreadStart(this.Run));
            t.Start();
        }