using System; using System.Windows.Forms; namespace GayMaker { static class Program { public static GayMaker GM; /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); GM = new GayMaker(); Application.Run(GM); } } }