XCI-Explorer/XCI_Explorer/Program.cs

14 lines
336 B
C#
Raw Normal View History

2018-06-17 18:21:52 +00:00
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());
}
}
2018-06-17 18:21:52 +00:00
}