BrawlBuilder/BrawlBuilder/Program.cs
Mogzol a9a9bac87f Integrate Ookii.Dialogs into BrawlBuilder
Instead of loading an external DLL, the necessary components of
Ookii.Dialogs (the Vista-style folder browser) are now compiled with
BrawlBuilder.
2016-09-26 19:56:51 -07:00

22 lines
401 B
C#

using System;
using System.Windows.Forms;
using System.Reflection;
using System.IO;
namespace BrawlBuilder
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new BrawlBuilder());
}
}
}