XCI-Explorer/XCI_Explorer/Program.cs
2018-07-08 01:21:58 -04:00

13 lines
336 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());
}
}
}