using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using DevExpress.UserSkins; using DevExpress.Skins; using DevExpress.LookAndFeel; namespace AFKAbutment { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] age) { AboutDevCompanion DC = new AboutDevCompanion(1, false); DC.Run(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); BonusSkins.Register(); SkinManager.EnableFormSkins(); UserLookAndFeel.Default.SetSkinStyle("DevExpress Style"); Application.Run(new Form1(age)); DC.Stop(); } } }