From d0d075eb8be6f2fa82b3667f6df43cb838c90419 Mon Sep 17 00:00:00 2001 From: jvyden Date: Mon, 18 Oct 2021 11:23:29 -0400 Subject: [PATCH] Fix for windows --- UnionPatcher.Gui.Windows/Program.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/UnionPatcher.Gui.Windows/Program.cs b/UnionPatcher.Gui.Windows/Program.cs index e2142f9..44bf0f1 100644 --- a/UnionPatcher.Gui.Windows/Program.cs +++ b/UnionPatcher.Gui.Windows/Program.cs @@ -1,5 +1,8 @@ -namespace UnionPatcher.Gui.Windows { +using System; + +namespace UnionPatcher.Gui.Windows { public static class Program { + [STAThread] public static void Main() { Gui.Show(); }