using Flowframes.Data; using Flowframes.IO; using Flowframes.OS; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace Flowframes { static class Program { public static Form1 mainForm; public static bool busy = false; public static string lastInputPath; public static bool lastInputPathIsSsd; public static Queue batchQueue = new Queue(); [STAThread] static void Main() { Config.Init(); if (Config.GetBool("delLogsOnStartup")) IOUtils.DeleteContentsOfDir(Paths.GetLogPath()); // Clear out older logs from previous session Networks.Init(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); mainForm = new Form1(); Application.Run(mainForm); } } }