PMStadium_Viewer/Stadium_Viewer/Program.cs
suloku 8b686374ef Can view all teams in the rom.
Can export as jpk1 file to use with pkhex.
2017-03-24 12:46:50 +01:00

32 lines
607 B
C#

/*
* Created by SharpDevelop.
* User: sergi
* Date: 07/02/2017
* Time: 19:12
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Windows.Forms;
namespace Stadium_Viewer
{
/// <summary>
/// Class with program entry point.
/// </summary>
internal sealed class Program
{
/// <summary>
/// Program entry point.
/// </summary>
[STAThread]
private static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}