diff --git a/ArmoredCar/ArmoredCar.sln b/ArmoredCar/ArmoredCar.sln
new file mode 100644
index 0000000..139871a
--- /dev/null
+++ b/ArmoredCar/ArmoredCar.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31624.102
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArmoredCar", "ArmoredCar\ArmoredCar.csproj", "{DF305908-12EB-4E63-8D7C-4FB47C82B6A5}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {DF305908-12EB-4E63-8D7C-4FB47C82B6A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {DF305908-12EB-4E63-8D7C-4FB47C82B6A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {DF305908-12EB-4E63-8D7C-4FB47C82B6A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {DF305908-12EB-4E63-8D7C-4FB47C82B6A5}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {687CB037-A981-4536-BAA8-48DE5C0EBE2A}
+ EndGlobalSection
+EndGlobal
diff --git a/ArmoredCar/ArmoredCar/ArmoredCar.csproj b/ArmoredCar/ArmoredCar/ArmoredCar.csproj
new file mode 100644
index 0000000..130a486
--- /dev/null
+++ b/ArmoredCar/ArmoredCar/ArmoredCar.csproj
@@ -0,0 +1,9 @@
+
+
+
+ WinExe
+ netcoreapp3.1
+ true
+
+
+
\ No newline at end of file
diff --git a/ArmoredCar/ArmoredCar/Form1.Designer.cs b/ArmoredCar/ArmoredCar/Form1.Designer.cs
new file mode 100644
index 0000000..7124a9c
--- /dev/null
+++ b/ArmoredCar/ArmoredCar/Form1.Designer.cs
@@ -0,0 +1,41 @@
+
+namespace ArmoredCar
+{
+ partial class Form1
+ {
+ ///
+ /// 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()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "Form1";
+ }
+
+ #endregion
+ }
+}
+
diff --git a/ArmoredCar/ArmoredCar/Form1.cs b/ArmoredCar/ArmoredCar/Form1.cs
new file mode 100644
index 0000000..7dbac09
--- /dev/null
+++ b/ArmoredCar/ArmoredCar/Form1.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace ArmoredCar
+{
+ public partial class Form1 : Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+ }
+
+ }
+}
diff --git a/ArmoredCar/ArmoredCar/Form1.resx b/ArmoredCar/ArmoredCar/Form1.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/ArmoredCar/ArmoredCar/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/ArmoredCar/ArmoredCar/Program.cs b/ArmoredCar/ArmoredCar/Program.cs
new file mode 100644
index 0000000..830c888
--- /dev/null
+++ b/ArmoredCar/ArmoredCar/Program.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace ArmoredCar
+{
+ static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ Application.SetHighDpiMode(HighDpiMode.SystemAware);
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
+ }
+ }
+}