mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-18 21:32:05 +01:00
23 lines
422 B
C#
23 lines
422 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ChanSort.Ui
|
|
{
|
|
static class Program
|
|
{
|
|
internal static bool ChangeLanguage;
|
|
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
do
|
|
{
|
|
ChangeLanguage = false;
|
|
Application.Run(new MainForm());
|
|
} while (ChangeLanguage);
|
|
}
|
|
}
|
|
}
|