PKHeX/Program.cs

20 lines
439 B
C#
Raw Normal View History

2014-06-28 21:22:05 +00:00
using System;
using System.Windows.Forms;
namespace PKHeX
{
internal static class Program
2014-06-28 21:22:05 +00:00
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
2014-06-28 21:22:05 +00:00
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
2014-06-28 21:22:05 +00:00
}
}
}