From e9ea621b93fbb58d9edfca8375918791637bbd52 Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 30 Dec 2020 20:59:04 +0800 Subject: +init --- .../Impostor.Patcher.WinForms/Program.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Impostor-dev/src/Impostor.Patcher/Impostor.Patcher.WinForms/Program.cs (limited to 'Impostor-dev/src/Impostor.Patcher/Impostor.Patcher.WinForms/Program.cs') diff --git a/Impostor-dev/src/Impostor.Patcher/Impostor.Patcher.WinForms/Program.cs b/Impostor-dev/src/Impostor.Patcher/Impostor.Patcher.WinForms/Program.cs new file mode 100644 index 0000000..7ca9035 --- /dev/null +++ b/Impostor-dev/src/Impostor.Patcher/Impostor.Patcher.WinForms/Program.cs @@ -0,0 +1,17 @@ +using System; +using System.Windows.Forms; +using Impostor.Patcher.WinForms.Forms; + +namespace Impostor.Patcher.WinForms +{ + internal static class Program + { + [STAThread] + private static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new FrmMain()); + } + } +} \ No newline at end of file -- cgit v1.1-26-g67d0