diff --git a/.idea/.idea.UnionPatcher/.idea/discord.xml b/.idea/.idea.UnionPatcher/.idea/discord.xml
index 30bab2a..d8e9561 100644
--- a/.idea/.idea.UnionPatcher/.idea/discord.xml
+++ b/.idea/.idea.UnionPatcher/.idea/discord.xml
@@ -1,7 +1,7 @@
-
+
\ No newline at end of file
diff --git a/UnionPatcher.Gui.Windows/Program.cs b/UnionPatcher.Gui.Windows/Program.cs
new file mode 100644
index 0000000..400f856
--- /dev/null
+++ b/UnionPatcher.Gui.Windows/Program.cs
@@ -0,0 +1,9 @@
+using Eto.Forms;
+
+namespace UnionPatcher.Gui.Windows {
+ public static class Program {
+ public static void Main(string[] args) {
+ new Application().Run(new TestForm());
+ }
+ }
+}
\ No newline at end of file
diff --git a/UnionPatcher.Gui.Windows/UnionPatcher.Gui.Windows.csproj b/UnionPatcher.Gui.Windows/UnionPatcher.Gui.Windows.csproj
new file mode 100644
index 0000000..73c9ff2
--- /dev/null
+++ b/UnionPatcher.Gui.Windows/UnionPatcher.Gui.Windows.csproj
@@ -0,0 +1,20 @@
+
+
+
+ WinExe
+ net5.0-windows
+ UnionPatcher.Gui.Windows
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/UnionPatcher.Gui/Gui.cs b/UnionPatcher.Gui/Gui.cs
new file mode 100644
index 0000000..ca1c3ce
--- /dev/null
+++ b/UnionPatcher.Gui/Gui.cs
@@ -0,0 +1,10 @@
+using System;
+using Eto.Forms;
+
+namespace UnionPatcher.Gui {
+ public static class Gui {
+ public static void Show() {
+ new Application().Run(new TestForm());
+ }
+ }
+}
\ No newline at end of file
diff --git a/UnionPatcher.Gui/TestForm.cs b/UnionPatcher.Gui/TestForm.cs
new file mode 100644
index 0000000..f01f4d9
--- /dev/null
+++ b/UnionPatcher.Gui/TestForm.cs
@@ -0,0 +1,12 @@
+using Eto.Drawing;
+using Eto.Forms;
+
+namespace UnionPatcher.Gui {
+ public class TestForm : Form {
+ public TestForm() {
+ this.Title = "test";
+ this.ClientSize = new Size(200, 200);
+ this.Content = new Label { Text = "i'm stuff" };
+ }
+ }
+}
\ No newline at end of file
diff --git a/UnionPatcher.Gui/UnionPatcher.Gui.csproj b/UnionPatcher.Gui/UnionPatcher.Gui.csproj
new file mode 100644
index 0000000..023a8dd
--- /dev/null
+++ b/UnionPatcher.Gui/UnionPatcher.Gui.csproj
@@ -0,0 +1,13 @@
+
+
+
+ net5.0
+ UnionPatcher.Gui
+
+
+
+
+
+
+
+
diff --git a/UnionPatcher.sln b/UnionPatcher.sln
index 00f6fff..2a7a1c0 100644
--- a/UnionPatcher.sln
+++ b/UnionPatcher.sln
@@ -1,6 +1,8 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnionPatcher", "UnionPatcher\UnionPatcher.csproj", "{235B4DEC-11A0-42EF-9B8D-16529869ED1A}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnionPatcher.Gui", "UnionPatcher.Gui\UnionPatcher.Gui.csproj", "{235B4DEC-11A0-42EF-9B8D-16529869ED1A}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnionPatcher.Gui.Windows", "UnionPatcher.Gui.Windows\UnionPatcher.Gui.Windows.csproj", "{5F8CDEA2-B483-40D1-B1FB-EF8EC667185A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -12,5 +14,9 @@ Global
{235B4DEC-11A0-42EF-9B8D-16529869ED1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{235B4DEC-11A0-42EF-9B8D-16529869ED1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{235B4DEC-11A0-42EF-9B8D-16529869ED1A}.Release|Any CPU.Build.0 = Release|Any CPU
+ {5F8CDEA2-B483-40D1-B1FB-EF8EC667185A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {5F8CDEA2-B483-40D1-B1FB-EF8EC667185A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {5F8CDEA2-B483-40D1-B1FB-EF8EC667185A}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {5F8CDEA2-B483-40D1-B1FB-EF8EC667185A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
diff --git a/UnionPatcher.sln.DotSettings.user b/UnionPatcher.sln.DotSettings.user
new file mode 100644
index 0000000..0d04c8c
--- /dev/null
+++ b/UnionPatcher.sln.DotSettings.user
@@ -0,0 +1,4 @@
+
+ <AssemblyExplorer>
+ <Assembly Path="/home/jvyden/Documents/UnionPatcher/UnionPatcher.Gui.Windows/bin/Release/net5.0-windows/win10-x64/api-ms-win-core-file-l2-1-0.dll" />
+</AssemblyExplorer>
\ No newline at end of file
diff --git a/UnionPatcher/Program.cs b/UnionPatcher/Program.cs
deleted file mode 100644
index 1c75bfe..0000000
--- a/UnionPatcher/Program.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using System;
-
-namespace UnionPatcher {
- public class Program {
- public static void Main(string[] args) {
- Console.WriteLine("Hello World!");
- }
- }
-}
\ No newline at end of file
diff --git a/UnionPatcher/UnionPatcher.csproj b/UnionPatcher/UnionPatcher.csproj
deleted file mode 100644
index 9590466..0000000
--- a/UnionPatcher/UnionPatcher.csproj
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- Exe
- net5.0
-
-
-