XCI-Explorer/XCI_Explorer/Program.cs
2018-06-17 14:21:52 -04:00

16 lines
288 B
C#

using System;
using System.Windows.Forms;
namespace XCI_Explorer
{
internal static class Program
{
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}