Example #1
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();
        }