mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-12-04 01:22:29 +00:00
20 lines
479 B
C#
20 lines
479 B
C#
|
using System;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace mxd.GZDBUpdater
|
||
|
{
|
||
|
static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application.
|
||
|
/// </summary>
|
||
|
[STAThread]
|
||
|
static void Main()
|
||
|
{
|
||
|
Application.EnableVisualStyles();
|
||
|
Application.SetCompatibleTextRenderingDefault(false);
|
||
|
MainForm form = new MainForm();
|
||
|
if(!form.IsDisposed) Application.Run(form);
|
||
|
}
|
||
|
}
|
||
|
}
|