diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Patcher/Impostor.Patcher.WinForms/Program.cs')
-rw-r--r-- | Impostor-dev/src/Impostor.Patcher/Impostor.Patcher.WinForms/Program.cs | 17 |
1 files changed, 17 insertions, 0 deletions
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 |