mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Small code improvement in Program.cs
Give them their proper types
This commit is contained in:
parent
5a73217c23
commit
6b92806d70
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue