Small code improvement in Program.cs

Give them their proper types
This commit is contained in:
Tyler Dunn 2016-07-08 21:14:15 -04:00 committed by GitHub
parent 5a73217c23
commit 6b92806d70

View file

@ -3,13 +3,13 @@ using System.Windows.Forms;
namespace PKHeX
{
static class Program
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);