[성현모] proxykms gui 추가

This commit is contained in:
SHM
2026-03-03 13:01:16 +09:00
parent 4c25200f80
commit 99e5397307
17 changed files with 1909 additions and 4 deletions

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace KmsProxy.GUI
{
internal static class Program
{
/// <summary>
/// 해당 애플리케이션의 주 진입점입니다.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}