diff --git a/Amogulator.csproj b/Amogulator.csproj
new file mode 100644
index 0000000..2623758
--- /dev/null
+++ b/Amogulator.csproj
@@ -0,0 +1,14 @@
+
+
+
+ WinExe
+ net7.0-windows
+ enable
+ true
+
+
+
+
+
+
+
diff --git a/Amogulator.sln b/Amogulator.sln
new file mode 100644
index 0000000..aa5ed21
--- /dev/null
+++ b/Amogulator.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.5.33424.131
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Amogulator", "Amogulator.csproj", "{E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {79C30EBB-0022-43F8-B120-C4B3A70D9ECD}
+ EndGlobalSection
+EndGlobal
diff --git a/AmogulatorVM.cs b/AmogulatorVM.cs
new file mode 100644
index 0000000..cd89959
--- /dev/null
+++ b/AmogulatorVM.cs
@@ -0,0 +1,9 @@
+using CommunityToolkit.Mvvm.ComponentModel;
+
+namespace Amogulator;
+public partial class AmogulatorVM : ObservableObject {
+
+ [ObservableProperty]
+ private string output = "test";
+
+}
diff --git a/App.xaml b/App.xaml
new file mode 100644
index 0000000..545237e
--- /dev/null
+++ b/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/App.xaml.cs b/App.xaml.cs
new file mode 100644
index 0000000..fcc18f4
--- /dev/null
+++ b/App.xaml.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace Amogulator;
+///
+/// Interaction logic for App.xaml
+///
+public partial class App : Application {
+}
diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs
new file mode 100644
index 0000000..8b5504e
--- /dev/null
+++ b/AssemblyInfo.cs
@@ -0,0 +1,10 @@
+using System.Windows;
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
diff --git a/MainWindow.xaml b/MainWindow.xaml
new file mode 100644
index 0000000..6df8fbd
--- /dev/null
+++ b/MainWindow.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs
new file mode 100644
index 0000000..947049e
--- /dev/null
+++ b/MainWindow.xaml.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace Amogulator;
+///
+/// Interaction logic for MainWindow.xaml
+///
+public partial class MainWindow : Window {
+ public MainWindow() {
+ InitializeComponent();
+ }
+}