diff --git a/ProjectWarmlyShip/ProjectWarmlyShip.sln b/ProjectWarmlyShip/ProjectWarmlyShip.sln
new file mode 100644
index 0000000..35bc752
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.5.33627.172
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectWarmlyShip", "ProjectWarmlyShip\ProjectWarmlyShip.csproj", "{D1F03A6D-14AA-406C-94BB-CB5E055E7830}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {D1F03A6D-14AA-406C-94BB-CB5E055E7830}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {D1F03A6D-14AA-406C-94BB-CB5E055E7830}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {D1F03A6D-14AA-406C-94BB-CB5E055E7830}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {D1F03A6D-14AA-406C-94BB-CB5E055E7830}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {47092368-4841-45BC-8FA6-9653B7B37C6E}
+ EndGlobalSection
+EndGlobal
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/DirectionType.cs b/ProjectWarmlyShip/ProjectWarmlyShip/DirectionType.cs
new file mode 100644
index 0000000..f35c5aa
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/DirectionType.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectWarmlyShip
+{
+ public enum DirectionType
+ {
+ Up = 1,
+ Down = 2,
+ Left = 3,
+ Right = 4,
+ }
+}
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/DrawingWarmlyShip.cs b/ProjectWarmlyShip/ProjectWarmlyShip/DrawingWarmlyShip.cs
new file mode 100644
index 0000000..f76c3e2
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/DrawingWarmlyShip.cs
@@ -0,0 +1,133 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectWarmlyShip
+{
+ public class DrawingWarmlyShip
+ {
+ public EntityWarmlyShip? EntityWarmlyShip { get; private set; }
+ private int _pictureWidth;
+ private int _pictureHeight;
+ private int _startPosX;
+ private int _startPosY;
+ private readonly int _shipWidth = 100;
+ private readonly int _shipHeight = 70;
+ public bool Init(int speed, double weight, Color mainColor, Color optionalColor,
+ bool pipes, bool fuelCompartment, int width, int height)
+ {
+ ///
+ /// проверка, что размеры формы больше или равны размерам рисуемого объекта
+ ///
+ if (width < _shipWidth || height < _shipHeight)
+ {
+ return false;
+ }
+ _pictureWidth = width;
+ _pictureHeight = height;
+ EntityWarmlyShip = new EntityWarmlyShip();
+ EntityWarmlyShip.Init(speed, weight, mainColor, optionalColor, pipes, fuelCompartment);
+ return true;
+ }
+ public void SetPosition(int x, int y)
+ {
+ ///
+ /// Проверка, что x и y не выходят за пределы формы
+ ///
+ if (x < 0 || x + _shipWidth > _pictureWidth)
+ {
+ x = 20;
+ }
+ if (y < 0 || y + _shipHeight > _pictureHeight)
+ {
+ y = 20;
+ }
+ _startPosX = x;
+ _startPosY = y;
+ }
+ public void MoveTransport(DirectionType direction)
+ {
+ if (EntityWarmlyShip == null)
+ {
+ return;
+ }
+ switch (direction)
+ {
+ case DirectionType.Left:
+ if (_startPosX - EntityWarmlyShip.Step > 0)
+ {
+ _startPosX -= (int)EntityWarmlyShip.Step;
+ }
+ break;
+ case DirectionType.Up:
+ if (_startPosY - EntityWarmlyShip.Step > 0)
+ {
+ _startPosY -= (int)EntityWarmlyShip.Step;
+ }
+ break;
+ case DirectionType.Right:
+ if (_startPosX + EntityWarmlyShip.Step + _shipWidth < _pictureWidth)
+ {
+ _startPosX += (int)EntityWarmlyShip.Step;
+ }
+ break;
+ case DirectionType.Down:
+ if (_startPosY + EntityWarmlyShip.Step + _shipHeight < _pictureHeight)
+ {
+ _startPosY += (int)EntityWarmlyShip.Step;
+ }
+ break;
+ }
+ }
+ public void DrawTransport(Graphics g)
+ {
+ if (EntityWarmlyShip == null)
+ {
+ return;
+ }
+ Pen pen = new(Color.Black);
+ Brush optionalBrush = new SolidBrush(EntityWarmlyShip.OptionalColor);
+ if (EntityWarmlyShip.Pipes)
+ {
+ g.FillRectangle(optionalBrush, _startPosX + 70, _startPosY, 10, 30);
+ g.FillRectangle(optionalBrush, _startPosX + 50, _startPosY + 10, 10, 20);
+ g.DrawRectangle(pen, _startPosX + 50, _startPosY + 10, 10, 20);
+ g.DrawRectangle(pen, _startPosX + 70, _startPosY, 10, 30);
+ }
+ if (EntityWarmlyShip.FuelCompartment)
+ {
+ g.FillRectangle(optionalBrush, _startPosX + 10, _startPosY + 30, 10, 10);
+ g.DrawRectangle(pen, _startPosX + 10, _startPosY + 30, 10, 10);
+ }
+ Brush mainBrush = new SolidBrush(EntityWarmlyShip.MainColor);
+ //палуба
+ g.FillRectangle(mainBrush, _startPosX + 30, _startPosY + 30, 60, 10);
+ g.DrawRectangle(pen, _startPosX + 30, _startPosY + 30, 60, 10);
+ //корпус
+ g.FillPolygon(mainBrush, new Point[]
+ {
+ new Point(_startPosX, _startPosY + 40),
+ new Point(_startPosX + 100, _startPosY + 40),
+ new Point(_startPosX + 90, _startPosY + 60),
+ new Point(_startPosX + 20, _startPosY + 60),
+ new Point(_startPosX, _startPosY + 40),
+ }
+ );
+ g.DrawPolygon(pen, new Point[]
+ {
+ new Point(_startPosX, _startPosY + 40),
+ new Point(_startPosX + 100, _startPosY + 40),
+ new Point(_startPosX + 90, _startPosY + 60),
+ new Point(_startPosX + 20, _startPosY + 60),
+ new Point(_startPosX, _startPosY + 40),
+ }
+ );
+ //якорь
+ g.DrawLine(pen, _startPosX + 25, _startPosY + 45, _startPosX + 25, _startPosY + 55);
+ g.DrawLine(pen, _startPosX + 20, _startPosY + 50, _startPosX + 30, _startPosY + 50);
+ g.DrawLine(pen, _startPosX + 23, _startPosY + 55, _startPosX + 27, _startPosY + 55);
+ }
+ }
+}
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/EntityWarmlyShip.cs b/ProjectWarmlyShip/ProjectWarmlyShip/EntityWarmlyShip.cs
new file mode 100644
index 0000000..179eccc
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/EntityWarmlyShip.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectWarmlyShip
+{
+ public class EntityWarmlyShip
+ {
+ public int Speed { get; private set; }
+ public double Weight { get; private set; }
+ public Color MainColor { get; private set; }
+ public Color OptionalColor { get; private set; }
+ public bool Pipes { get; private set; }
+ public bool FuelCompartment { get; private set; }
+ public double Step => (double)Speed * 100 / Weight;
+ public void Init(int speed, double weight, Color mainColor, Color optionalColor, bool pipes, bool fuelCompartment)
+ {
+ Speed = speed;
+ Weight = weight;
+ MainColor = mainColor;
+ OptionalColor = optionalColor;
+ Pipes = pipes;
+ FuelCompartment = fuelCompartment;
+ }
+ }
+}
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Frame.Designer.cs b/ProjectWarmlyShip/ProjectWarmlyShip/Frame.Designer.cs
new file mode 100644
index 0000000..a702839
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/Frame.Designer.cs
@@ -0,0 +1,137 @@
+namespace ProjectWarmlyShip
+{
+ partial class WarmlyShipForm
+ {
+ ///
+ /// 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()
+ {
+ pictureBoxWarmlyShip = new PictureBox();
+ buttonCreate = new Button();
+ buttonUp = new Button();
+ buttonDown = new Button();
+ buttonLeft = new Button();
+ buttonRight = new Button();
+ ((System.ComponentModel.ISupportInitialize)pictureBoxWarmlyShip).BeginInit();
+ SuspendLayout();
+ //
+ // pictureBoxWarmlyShip
+ //
+ pictureBoxWarmlyShip.Dock = DockStyle.Fill;
+ pictureBoxWarmlyShip.Location = new Point(0, 0);
+ pictureBoxWarmlyShip.Name = "pictureBoxWarmlyShip";
+ pictureBoxWarmlyShip.Size = new Size(884, 461);
+ pictureBoxWarmlyShip.SizeMode = PictureBoxSizeMode.AutoSize;
+ pictureBoxWarmlyShip.TabIndex = 0;
+ pictureBoxWarmlyShip.TabStop = false;
+ //
+ // buttonCreate
+ //
+ buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
+ buttonCreate.Location = new Point(12, 426);
+ buttonCreate.Name = "buttonCreate";
+ buttonCreate.Size = new Size(75, 23);
+ buttonCreate.TabIndex = 1;
+ buttonCreate.Text = "Create";
+ buttonCreate.UseVisualStyleBackColor = true;
+ buttonCreate.Click += ButtonCreateWarmlyShip;
+ //
+ // buttonUp
+ //
+ buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonUp.BackgroundImage = Properties.Resources.ArrowUp;
+ buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
+ buttonUp.Location = new Point(806, 383);
+ buttonUp.Name = "buttonUp";
+ buttonUp.Size = new Size(30, 30);
+ buttonUp.TabIndex = 2;
+ buttonUp.UseVisualStyleBackColor = true;
+ buttonUp.Click += buttonMove_Click;
+ //
+ // buttonDown
+ //
+ buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonDown.BackgroundImage = Properties.Resources.ArrowDown;
+ buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
+ buttonDown.Location = new Point(806, 419);
+ buttonDown.Name = "buttonDown";
+ buttonDown.Size = new Size(30, 30);
+ buttonDown.TabIndex = 3;
+ buttonDown.UseVisualStyleBackColor = true;
+ buttonDown.Click += buttonMove_Click;
+ //
+ // buttonLeft
+ //
+ buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonLeft.BackgroundImage = Properties.Resources.ArrowLeft;
+ buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
+ buttonLeft.Location = new Point(770, 419);
+ buttonLeft.Name = "buttonLeft";
+ buttonLeft.Size = new Size(30, 30);
+ buttonLeft.TabIndex = 4;
+ buttonLeft.UseVisualStyleBackColor = true;
+ buttonLeft.Click += buttonMove_Click;
+ //
+ // buttonRight
+ //
+ buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonRight.BackgroundImage = Properties.Resources.ArrowRight;
+ buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
+ buttonRight.Location = new Point(842, 419);
+ buttonRight.Name = "buttonRight";
+ buttonRight.Size = new Size(30, 30);
+ buttonRight.TabIndex = 5;
+ buttonRight.UseVisualStyleBackColor = true;
+ buttonRight.Click += buttonMove_Click;
+ //
+ // WarmlyShipForm
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(884, 461);
+ Controls.Add(buttonRight);
+ Controls.Add(buttonLeft);
+ Controls.Add(buttonDown);
+ Controls.Add(buttonUp);
+ Controls.Add(buttonCreate);
+ Controls.Add(pictureBoxWarmlyShip);
+ Name = "WarmlyShipForm";
+ StartPosition = FormStartPosition.CenterScreen;
+ Text = "WarmlyShip";
+ ((System.ComponentModel.ISupportInitialize)pictureBoxWarmlyShip).EndInit();
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ #endregion
+
+ private PictureBox pictureBoxWarmlyShip;
+ private Button buttonCreate;
+ private Button buttonUp;
+ private Button buttonDown;
+ private Button buttonLeft;
+ private Button buttonRight;
+ }
+}
\ No newline at end of file
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Frame.cs b/ProjectWarmlyShip/ProjectWarmlyShip/Frame.cs
new file mode 100644
index 0000000..7cec8df
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/Frame.cs
@@ -0,0 +1,63 @@
+namespace ProjectWarmlyShip
+{
+ public partial class WarmlyShipForm : Form
+ {
+ private DrawingWarmlyShip? _drawingWarmlyShip;
+ public WarmlyShipForm()
+ {
+ InitializeComponent();
+ }
+ private void Draw()
+ {
+ if (_drawingWarmlyShip == null)
+ {
+ return;
+ }
+ Bitmap bmp = new(pictureBoxWarmlyShip.Width, pictureBoxWarmlyShip.Height);
+ Graphics gr = Graphics.FromImage(bmp);
+ _drawingWarmlyShip.DrawTransport(gr);
+ pictureBoxWarmlyShip.Image = bmp;
+ }
+ private void ButtonCreateWarmlyShip(object sender, EventArgs e)
+ {
+ Random rnd = new Random();
+ _drawingWarmlyShip = new DrawingWarmlyShip();
+ _drawingWarmlyShip.Init(
+ rnd.Next(100, 300),
+ rnd.Next(1000, 3000),
+ Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
+ Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
+ Convert.ToBoolean(rnd.Next(0, 2)),
+ Convert.ToBoolean(rnd.Next(0, 2)),
+ pictureBoxWarmlyShip.Width,
+ pictureBoxWarmlyShip.Height
+ );
+ _drawingWarmlyShip.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100));
+ Draw();
+ }
+ private void buttonMove_Click(object sender, EventArgs e)
+ {
+ if (_drawingWarmlyShip == null)
+ {
+ return;
+ }
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ switch (name)
+ {
+ case "buttonUp":
+ _drawingWarmlyShip.MoveTransport(DirectionType.Up);
+ break;
+ case "buttonDown":
+ _drawingWarmlyShip.MoveTransport(DirectionType.Down);
+ break;
+ case "buttonLeft":
+ _drawingWarmlyShip.MoveTransport(DirectionType.Left);
+ break;
+ case "buttonRight":
+ _drawingWarmlyShip.MoveTransport(DirectionType.Right);
+ break;
+ }
+ Draw();
+ }
+ }
+}
\ No newline at end of file
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Frame.resx b/ProjectWarmlyShip/ProjectWarmlyShip/Frame.resx
new file mode 100644
index 0000000..f298a7b
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/Frame.resx
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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/ProjectWarmlyShip/ProjectWarmlyShip/Program.cs b/ProjectWarmlyShip/ProjectWarmlyShip/Program.cs
new file mode 100644
index 0000000..edcb85c
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/Program.cs
@@ -0,0 +1,17 @@
+namespace ProjectWarmlyShip
+{
+ 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 WarmlyShipForm());
+ }
+ }
+}
\ No newline at end of file
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/ProjectWarmlyShip.csproj b/ProjectWarmlyShip/ProjectWarmlyShip/ProjectWarmlyShip.csproj
new file mode 100644
index 0000000..13ee123
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/ProjectWarmlyShip.csproj
@@ -0,0 +1,26 @@
+
+
+
+ WinExe
+ net6.0-windows
+ enable
+ true
+ enable
+
+
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+
\ No newline at end of file
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Properties/Resources.Designer.cs b/ProjectWarmlyShip/ProjectWarmlyShip/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..9fcc7b5
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/Properties/Resources.Designer.cs
@@ -0,0 +1,103 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+namespace ProjectWarmlyShip.Properties {
+ using System;
+
+
+ ///
+ /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д.
+ ///
+ // Этот класс создан автоматически классом StronglyTypedResourceBuilder
+ // с помощью такого средства, как ResGen или Visual Studio.
+ // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen
+ // с параметром /str или перестройте свой проект VS.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ProjectWarmlyShip.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Перезаписывает свойство CurrentUICulture текущего потока для всех
+ /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap ArrowDown {
+ get {
+ object obj = ResourceManager.GetObject("ArrowDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap ArrowLeft {
+ get {
+ object obj = ResourceManager.GetObject("ArrowLeft", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap ArrowRight {
+ get {
+ object obj = ResourceManager.GetObject("ArrowRight", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap ArrowUp {
+ get {
+ object obj = ResourceManager.GetObject("ArrowUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+ }
+}
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Properties/Resources.resx b/ProjectWarmlyShip/ProjectWarmlyShip/Properties/Resources.resx
new file mode 100644
index 0000000..cd366ac
--- /dev/null
+++ b/ProjectWarmlyShip/ProjectWarmlyShip/Properties/Resources.resx
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+
+ ..\Resources\ArrowDown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ArrowRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ArrowLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ArrowUp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowDown.png b/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowDown.png
new file mode 100644
index 0000000..6f2438f
Binary files /dev/null and b/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowDown.png differ
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowLeft.png b/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowLeft.png
new file mode 100644
index 0000000..4ce0e4f
Binary files /dev/null and b/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowLeft.png differ
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowRight.png b/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowRight.png
new file mode 100644
index 0000000..69bd44f
Binary files /dev/null and b/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowRight.png differ
diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowUp.png b/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowUp.png
new file mode 100644
index 0000000..54e5abe
Binary files /dev/null and b/ProjectWarmlyShip/ProjectWarmlyShip/Resources/ArrowUp.png differ