diff --git a/Bulldozer/Bulldozer.sln b/Bulldozer/Bulldozer.sln
new file mode 100644
index 0000000..4dce5b7
--- /dev/null
+++ b/Bulldozer/Bulldozer.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.7.34031.279
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bulldozer", "Bulldozer\Bulldozer.csproj", "{482E32F2-FE3A-4B3C-AC3D-C7419C20585A}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {482E32F2-FE3A-4B3C-AC3D-C7419C20585A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {482E32F2-FE3A-4B3C-AC3D-C7419C20585A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {482E32F2-FE3A-4B3C-AC3D-C7419C20585A}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {482E32F2-FE3A-4B3C-AC3D-C7419C20585A}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {A1D4CE77-F0A3-4A6C-A4BE-3E6E7FB6A566}
+ EndGlobalSection
+EndGlobal
diff --git a/Bulldozer/Bulldozer/Bulldozer.csproj b/Bulldozer/Bulldozer/Bulldozer.csproj
new file mode 100644
index 0000000..b57c89e
--- /dev/null
+++ b/Bulldozer/Bulldozer/Bulldozer.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net6.0-windows
+ enable
+ true
+ enable
+
+
+
\ No newline at end of file
diff --git a/Bulldozer/Bulldozer/Form1.Designer.cs b/Bulldozer/Bulldozer/Form1.Designer.cs
new file mode 100644
index 0000000..24dbf88
--- /dev/null
+++ b/Bulldozer/Bulldozer/Form1.Designer.cs
@@ -0,0 +1,45 @@
+namespace Bulldozer
+{
+ partial class FormBulldozer
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ SuspendLayout();
+ //
+ // FormBulldozer
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(800, 450);
+ Name = "FormBulldozer";
+ Text = "Form1";
+ ResumeLayout(false);
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/Bulldozer/Bulldozer/Form1.cs b/Bulldozer/Bulldozer/Form1.cs
new file mode 100644
index 0000000..34d95c6
--- /dev/null
+++ b/Bulldozer/Bulldozer/Form1.cs
@@ -0,0 +1,10 @@
+namespace Bulldozer
+{
+ public partial class FormBulldozer : Form
+ {
+ public FormBulldozer()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/Bulldozer/Bulldozer/Form1.resx b/Bulldozer/Bulldozer/Form1.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/Bulldozer/Bulldozer/Form1.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Bulldozer/Bulldozer/Program.cs b/Bulldozer/Bulldozer/Program.cs
new file mode 100644
index 0000000..74d0a17
--- /dev/null
+++ b/Bulldozer/Bulldozer/Program.cs
@@ -0,0 +1,17 @@
+namespace Bulldozer
+{
+ internal static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ // To customize application configuration such as set high DPI settings or default font,
+ // see https://aka.ms/applicationconfiguration.
+ ApplicationConfiguration.Initialize();
+ Application.Run(new FormBulldozer());
+ }
+ }
+}
\ No newline at end of file