using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace GUI { static class Program { public static ComAgent comAgent; [STAThread] static void Main() { #if DEBUG Win32Api.AllocConsole(); #endif Application.SetHighDpiMode(HighDpiMode.SystemAware); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new ControllerGUI()); } } }