mirror of
https://github.com/StudentBlake/XCI-Explorer
synced 2024-11-10 14:44:16 +00:00
16 lines
288 B
C#
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());
|
|
}
|
|
}
|
|
}
|