mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 15:04:58 +00:00
21 lines
492 B
C#
21 lines
492 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace WelsonJS.Launcher
|
|||
|
{
|
|||
|
internal static class Program
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 해당 애플리케이션의 주 진입점입니다.
|
|||
|
/// </summary>
|
|||
|
[STAThread]
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
Application.EnableVisualStyles();
|
|||
|
Application.SetCompatibleTextRenderingDefault(false);
|
|||
|
Application.Run(new MainForm());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|