/* * Created by SharpDevelop. * User: suloku * Date: 18/10/2015 * Time: 9:17 * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; using System.Windows.Forms; namespace XYORAS_Pokemon_Link_Tool { /// /// Class with program entry point. /// internal sealed class Program { /// /// Program entry point. /// [STAThread] private static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } } }