////////////////////////////////////////////////////////////////////////////// // Project: Ob51 // License: Apache License, Version 2.0; for details see LICENSE file // Copyright: see NOTICE file // // Last file commit: $Revision: 87 $ Made by: $Author: avek $ ////////////////////////////////////////////////////////////////////////////// using System; using System.Windows.Forms; namespace Ob51.AGUITool { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } } }