diff --git a/CursorLang.sln b/CursorLang.sln
new file mode 100644
index 0000000..8c45ac5
--- /dev/null
+++ b/CursorLang.sln
@@ -0,0 +1,16 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CursorLang", "CursorLang\CursorLang.csproj", "{4729F06C-53D8-4871-8750-A0632F0A6B07}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {4729F06C-53D8-4871-8750-A0632F0A6B07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {4729F06C-53D8-4871-8750-A0632F0A6B07}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {4729F06C-53D8-4871-8750-A0632F0A6B07}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {4729F06C-53D8-4871-8750-A0632F0A6B07}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+EndGlobal
diff --git a/CursorLang/App.xaml b/CursorLang/App.xaml
new file mode 100644
index 0000000..0868dcc
--- /dev/null
+++ b/CursorLang/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/CursorLang/App.xaml.cs b/CursorLang/App.xaml.cs
new file mode 100644
index 0000000..9f3548b
--- /dev/null
+++ b/CursorLang/App.xaml.cs
@@ -0,0 +1,12 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace CursorLang;
+
+///
+/// Interaction logic for App.xaml
+///
+public partial class App : Application
+{
+}
\ No newline at end of file
diff --git a/CursorLang/AssemblyInfo.cs b/CursorLang/AssemblyInfo.cs
new file mode 100644
index 0000000..4a05c7d
--- /dev/null
+++ b/CursorLang/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)
+)]
\ No newline at end of file
diff --git a/CursorLang/CursorLang.csproj b/CursorLang/CursorLang.csproj
new file mode 100644
index 0000000..212659c
--- /dev/null
+++ b/CursorLang/CursorLang.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net10.0-windows
+ enable
+ enable
+ true
+
+
+
diff --git a/CursorLang/MainWindow.xaml b/CursorLang/MainWindow.xaml
new file mode 100644
index 0000000..7d85b43
--- /dev/null
+++ b/CursorLang/MainWindow.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
diff --git a/CursorLang/MainWindow.xaml.cs b/CursorLang/MainWindow.xaml.cs
new file mode 100644
index 0000000..2994a5f
--- /dev/null
+++ b/CursorLang/MainWindow.xaml.cs
@@ -0,0 +1,23 @@
+using System.Text;
+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 CursorLang;
+
+///
+/// Interaction logic for MainWindow.xaml
+///
+public partial class MainWindow : Window
+{
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file