static void Main() { //Console.WriteLine("Hello World!"); LauncherMain m = new LauncherMain(); m.init(); }
public Updater(LauncherMain main) { log.WriteLine("App Updater "); this.main = main; // Thread t = new Thread(new ThreadStart(this.Run)); t.Start(); }
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(); }