blob: 3a44ac763d0a656564f4d36890b032f83e558a30 [file] [log] [blame]
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace distribution_explorer
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new DistexForm());
}
}
}