Beispiel #1
0
        static void Main()
        {
#if TEST_AS_FRENCH
            Tools.SetThreadToFrench();
#endif
            DebugLogger.Initialise();
            ExceptionFuncs.Initialise();
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            try
            {
                Application.Run(new MainForm());
            }
            catch (Exception e)
            {
                ExceptionFuncs.ReportUnhandledException(e, "GT2 GMCreator encountered a fatal error. Please report this to");
            }
        }