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

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

            this.main = main;
            //
            Thread t = new Thread(new ThreadStart(this.Run));
            t.Start();
        }
Example #3
0
        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();
        }