diff --git a/ProjectBulldozer/DirectionType.cs b/ProjectBulldozer/DirectionType.cs
new file mode 100644
index 0000000..a20df48
--- /dev/null
+++ b/ProjectBulldozer/DirectionType.cs
@@ -0,0 +1,24 @@
+namespace ProjectBulldozer;
+///
+/// Направления перемещения
+///
+public enum DirectionType
+{
+ ///
+ /// Вверх
+ ///
+ Up = 1,
+ ///
+ /// Вниз
+ ///
+ Down = 2,
+ ///
+ /// Влево
+ ///
+ Left = 3,
+ ///
+ /// Вправо
+ ///
+ Right = 4,
+}
+
diff --git a/ProjectBulldozer/DrawingBulldozer.cs b/ProjectBulldozer/DrawingBulldozer.cs
new file mode 100644
index 0000000..193a695
--- /dev/null
+++ b/ProjectBulldozer/DrawingBulldozer.cs
@@ -0,0 +1,249 @@
+using System;
+using System.Collections.Generic;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectBulldozer;
+///
+///
+///
+public class DrawingBulldozer
+{
+ ///
+ /// Класс сущность
+ ///
+ public EntityBulldozer? EntityBulldozer { get; private set; }
+
+ ///
+ /// Ширина окна
+ ///
+ private int? _pictureWidth;
+
+ ///
+ /// Высота окна
+ ///
+ private int? _pictureHeight;
+
+ ///
+ /// Левая координатная прорисовка бульдозера
+ ///
+ private int? _startPosX;
+
+ ///
+ /// Верхняя координатная прорисовка бульдозера
+ ///
+ private int? _startPosY;
+
+ ///
+ /// Ширина прорисовки бульдозера
+ ///
+ private readonly int _drawningBulWidth = 280;
+
+ ///
+ /// Высота прорисовки бульдозера
+ ///
+ private readonly int _drawingBulHeight = 140;
+
+ public void Init (int speed, double weight, Color bodyColor, Color cabinColor, bool wheels, bool wing)
+ {
+ EntityBulldozer = new EntityBulldozer();
+ EntityBulldozer.Init(speed, weight, bodyColor, cabinColor, wheels, wing);
+ _pictureWidth = null;
+ _pictureHeight = null;
+ _startPosX = null;
+ _startPosY = null;
+ }
+
+ ///
+ /// Установка границ поля
+ ///
+ /// Ширина поля
+ /// Высота поля
+ ///
+ public bool SetPictureSize(int width, int height)
+ {
+ if (_drawningBulWidth <= width && _drawingBulHeight <= height) {
+ _pictureWidth = width;
+ _pictureHeight = height;
+ return true;
+ }
+ else
+ {
+ return false;
+ }
+ }
+
+ ///
+ /// Установка позиции
+ ///
+ /// Коррдината X
+ /// Координата Y
+ public void SetPozition(int x, int y)
+ {
+ if (!_pictureHeight.HasValue || !_pictureWidth.HasValue)
+ {
+ return;
+ }
+ if (x < 0)
+ {
+ x = 0;
+ }
+ else if (x > _pictureWidth.Value - _drawningBulWidth)
+ {
+ x = _pictureWidth.Value - _drawningBulWidth;
+ }
+ if (y < 0)
+ {
+ y = 0;
+ }
+ else if (y > _pictureHeight.Value - _drawingBulHeight)
+ {
+ y = _pictureHeight.Value - _drawingBulHeight;
+ }
+
+ _startPosX = x;
+ _startPosY = y;
+
+ }
+
+ ///
+ /// Изменение направления перемещения
+ ///
+ /// Направление
+ /// true - перемещене выполнено, false - перемещение невозможно
+ public bool MoveTransport(DirectionType direction)
+ {
+ if (EntityBulldozer == null || !_startPosX.HasValue || !_startPosY.HasValue
+ || _pictureWidth == null || _pictureHeight == null)
+ {
+ return false;
+ }
+ switch (direction)
+ {
+ //Влево
+ case DirectionType.Left:
+ if (_startPosX.Value - EntityBulldozer.Step > 0)
+ {
+ _startPosX -= (int)EntityBulldozer.Step;
+ }
+ return true;
+ // Вправо
+ case DirectionType.Right:
+ if (_startPosX.Value + EntityBulldozer.Step <
+ _pictureWidth.Value - _drawningBulWidth)
+ {
+ _startPosX += (int)EntityBulldozer.Step;
+ }
+ return true;
+ //Вверх
+ case DirectionType.Up:
+ if(_startPosY.Value + EntityBulldozer.Step > 0)
+ {
+ _startPosY -= (int)EntityBulldozer.Step;
+ }
+ return true;
+ //Вниз
+ case DirectionType.Down:
+ if (_startPosY.Value + EntityBulldozer.Step <
+ _pictureHeight.Value - _drawingBulHeight)
+ {
+ _startPosY += (int)EntityBulldozer.Step;
+ }
+ return true;
+ default:
+ return false;
+ }
+ }
+
+ ///
+ /// Прорисовка объекта
+ ///
+ ///
+ public void DrawTransport(Graphics g)
+ {
+ if(EntityBulldozer == null || !_startPosX.HasValue || !_startPosY.HasValue)
+ {
+ return;
+ }
+
+ Pen pen = new (Color.Black);
+ Pen pen1 = new (EntityBulldozer.BodyColor);
+ Pen pen2 = new (EntityBulldozer.DopColor);
+ Brush bodyBrush = new SolidBrush(EntityBulldozer.BodyColor);
+ Brush additionalBrush = new SolidBrush(EntityBulldozer.DopColor);
+
+
+
+
+ //Границы Бульдозера
+ //Кабина
+ g.DrawRectangle(pen, _startPosX.Value + 70, _startPosY.Value + 15, 55, 30);
+ g.FillRectangle(additionalBrush, _startPosX.Value + 70, _startPosY.Value + 15, 55, 30);
+ //Кузов
+ g.DrawRectangle(pen, _startPosX.Value + 60, _startPosY.Value + 45, 135, 45);
+ g.FillRectangle(bodyBrush, _startPosX.Value + 60, _startPosY.Value + 45, 135, 45);
+ //Труба
+ g.DrawRectangle(pen, _startPosX.Value + 150, _startPosY.Value + 15, 10, 30);
+ g.FillRectangle(bodyBrush, _startPosX.Value + 150, _startPosY.Value + 15, 10, 30);
+ //Гусеница
+ g.DrawEllipse(pen, _startPosX.Value + 60, _startPosY.Value + 90, 135, 40);
+ //Колеса
+ g.DrawEllipse(pen, _startPosX.Value + 65, _startPosY.Value + 100, 20, 20);
+ g.DrawEllipse(pen, _startPosX.Value + 90, _startPosY.Value + 95, 30, 30);
+ g.DrawEllipse(pen, _startPosX.Value + 135, _startPosY.Value + 95, 30, 30);
+ g.DrawEllipse(pen, _startPosX.Value + 170, _startPosY.Value + 100, 20, 20);
+ g.FillEllipse(bodyBrush, _startPosX.Value + 65, _startPosY.Value + 100, 20, 20);
+ g.FillEllipse(bodyBrush, _startPosX.Value + 90, _startPosY.Value + 95, 30, 30);
+ g.FillEllipse(bodyBrush, _startPosX.Value + 135, _startPosY.Value + 95, 30, 30);
+ g.FillEllipse(bodyBrush, _startPosX.Value + 170, _startPosY.Value + 100, 20, 20);
+
+
+
+ //Ковш
+ g.DrawPolygon(pen1, new Point[]
+ {
+ new Point (_startPosX.Value + 200, _startPosY.Value + 60),
+ new Point (_startPosX.Value + 200, _startPosY.Value + 110),
+ new Point (_startPosX.Value + 280, _startPosY.Value + 110),
+ });
+ //Рыхлитель
+ g.DrawPolygon(pen2, new Point[]
+ {
+ new Point (_startPosX.Value + 5, _startPosY.Value + 75),
+ new Point (_startPosX.Value + 55, _startPosY.Value + 60),
+ new Point (_startPosX.Value + 60, _startPosY.Value + 100),
+ });
+
+
+
+
+ if (EntityBulldozer.Wheels)
+ {
+ //Квадратные
+ g.DrawRectangle(pen, _startPosX.Value + 65, _startPosY.Value + 100, 20, 20);
+ g.DrawRectangle(pen, _startPosX.Value + 90, _startPosY.Value + 95, 30, 30);
+ g.DrawRectangle(pen, _startPosX.Value + 135, _startPosY.Value + 95, 30, 30);
+ g.DrawRectangle(pen, _startPosX.Value + 170, _startPosY.Value + 100, 20, 20);
+ g.FillRectangle(additionalBrush, _startPosX.Value + 65, _startPosY.Value + 100, 20, 20);
+ g.FillRectangle(additionalBrush, _startPosX.Value + 90, _startPosY.Value + 95, 30, 30);
+ g.FillRectangle(additionalBrush, _startPosX.Value + 135, _startPosY.Value + 95, 30, 30);
+ g.FillRectangle(additionalBrush, _startPosX.Value + 170, _startPosY.Value + 100, 20, 20);
+ }
+
+ if (EntityBulldozer.Wing)
+ {
+
+ g.DrawPolygon(pen1, new Point[]
+ {
+ new Point (_startPosX.Value + 200, _startPosY.Value + 60),
+ new Point (_startPosX.Value + 255, _startPosY.Value + 40),
+ new Point (_startPosX.Value + 250, _startPosY.Value + 70),
+ });
+
+ }
+
+ }
+}
+
diff --git a/ProjectBulldozer/EntityBulldozer.cs b/ProjectBulldozer/EntityBulldozer.cs
new file mode 100644
index 0000000..e8d0677
--- /dev/null
+++ b/ProjectBulldozer/EntityBulldozer.cs
@@ -0,0 +1,60 @@
+using System;
+using System.Drawing;
+
+namespace ProjectBulldozer;
+
+
+///
+/// Класс-сущность "Бульдозер"
+///
+ public class EntityBulldozer
+ {
+ ///
+ /// Скорость
+ ///
+ public int Speed { get; private set; }
+ ///
+ /// Вес
+ ///
+ public double Weight { get; private set; }
+ ///
+ /// Цвет
+ ///
+ public Color BodyColor { get; private set; }
+ ///
+ /// Цвет кабины
+ ///
+ public Color DopColor { get; private set; }
+ ///
+ /// Признак (опция) наличия колёс
+ ///
+ public bool Wheels { get; private set;}
+ ///
+ /// Признак (опция) наличия ковша
+ ///
+ public bool Wing { get; private set; }
+ ///
+ /// Шаг перемещения автомобиля
+ ///
+ public double Step => Speed * 100 / Weight;
+ ///
+ /// Инциализация полей объекта-класса бульдозера
+ ///
+ /// Скорость
+ /// Вес
+ /// Цвет
+ /// Цвет кабины
+ /// Признак наличия колёс
+ /// Признак наличия ковша
+ public void Init(int speed, double weight, Color bodyColor, Color dopColor, bool wheels, bool wing)
+ {
+ Speed = speed;
+ Weight = weight;
+ BodyColor = bodyColor;
+ DopColor = dopColor;
+ Wheels = wheels;
+ Wing = wing;
+
+ }
+ }
+
diff --git a/ProjectBulldozer/FormBulldozer.Designer.cs b/ProjectBulldozer/FormBulldozer.Designer.cs
new file mode 100644
index 0000000..4ec7f23
--- /dev/null
+++ b/ProjectBulldozer/FormBulldozer.Designer.cs
@@ -0,0 +1,135 @@
+namespace ProjectBulldozer
+{
+ 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()
+ {
+ pictureBoxBulldozer = new PictureBox();
+ buttonCreate = new Button();
+ buttonUp = new Button();
+ buttonDown = new Button();
+ buttonRight = new Button();
+ buttonLeft = new Button();
+ ((System.ComponentModel.ISupportInitialize)pictureBoxBulldozer).BeginInit();
+ SuspendLayout();
+ //
+ // pictureBoxBulldozer
+ //
+ pictureBoxBulldozer.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
+ pictureBoxBulldozer.Location = new Point(0, 0);
+ pictureBoxBulldozer.Name = "pictureBoxBulldozer";
+ pictureBoxBulldozer.Size = new Size(969, 584);
+ pictureBoxBulldozer.TabIndex = 0;
+ pictureBoxBulldozer.TabStop = false;
+ //
+ // buttonCreate
+ //
+ buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
+ buttonCreate.Location = new Point(12, 549);
+ buttonCreate.Name = "buttonCreate";
+ buttonCreate.Size = new Size(75, 23);
+ buttonCreate.TabIndex = 1;
+ buttonCreate.Text = "Создать";
+ buttonCreate.UseVisualStyleBackColor = true;
+ buttonCreate.Click += button1_Click;
+ //
+ // buttonUp
+ //
+ buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonUp.BackgroundImage = Properties.Resources.arrowUp;
+ buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
+ buttonUp.Location = new Point(842, 490);
+ buttonUp.Name = "buttonUp";
+ buttonUp.Size = new Size(38, 38);
+ 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.Stretch;
+ buttonDown.Location = new Point(842, 534);
+ buttonDown.Name = "buttonDown";
+ buttonDown.Size = new Size(38, 38);
+ buttonDown.TabIndex = 3;
+ buttonDown.UseVisualStyleBackColor = true;
+ buttonDown.Click += ButtonMove_Click;
+ //
+ // buttonRight
+ //
+ buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonRight.BackgroundImage = Properties.Resources.arrowRight;
+ buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
+ buttonRight.Location = new Point(886, 511);
+ buttonRight.Name = "buttonRight";
+ buttonRight.Size = new Size(38, 38);
+ buttonRight.TabIndex = 4;
+ buttonRight.UseVisualStyleBackColor = true;
+ buttonRight.Click += ButtonMove_Click;
+ //
+ // buttonLeft
+ //
+ buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonLeft.BackgroundImage = Properties.Resources.arrowLeft;
+ buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
+ buttonLeft.Location = new Point(798, 511);
+ buttonLeft.Name = "buttonLeft";
+ buttonLeft.Size = new Size(38, 38);
+ buttonLeft.TabIndex = 5;
+ buttonLeft.UseVisualStyleBackColor = true;
+ buttonLeft.Click += ButtonMove_Click;
+ //
+ // FormBulldozer
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(969, 584);
+ Controls.Add(buttonLeft);
+ Controls.Add(buttonRight);
+ Controls.Add(buttonDown);
+ Controls.Add(buttonUp);
+ Controls.Add(buttonCreate);
+ Controls.Add(pictureBoxBulldozer);
+ Name = "FormBulldozer";
+ Text = "Бульдозер";
+ Click += ButtonMove_Click;
+ ((System.ComponentModel.ISupportInitialize)pictureBoxBulldozer).EndInit();
+ ResumeLayout(false);
+ }
+
+ #endregion
+
+ private PictureBox pictureBoxBulldozer;
+ private Button buttonCreate;
+ private Button buttonUp;
+ private Button buttonDown;
+ private Button buttonRight;
+ private Button buttonLeft;
+ }
+}
\ No newline at end of file
diff --git a/ProjectBulldozer/FormBulldozer.cs b/ProjectBulldozer/FormBulldozer.cs
new file mode 100644
index 0000000..d0ef4d7
--- /dev/null
+++ b/ProjectBulldozer/FormBulldozer.cs
@@ -0,0 +1,84 @@
+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 ProjectBulldozer
+{
+ public partial class FormBulldozer : Form
+ {
+ private DrawingBulldozer? _drawingBulldozer;
+
+ public FormBulldozer()
+ {
+ InitializeComponent();
+ }
+
+ private void Draw()
+ {
+ if (_drawingBulldozer == null)
+ {
+ return;
+ }
+
+ Bitmap bmp = new(pictureBoxBulldozer.Width, pictureBoxBulldozer.Height);
+ Graphics gr = Graphics.FromImage(bmp);
+ _drawingBulldozer.DrawTransport(gr);
+ pictureBoxBulldozer.Image = bmp;
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ Random random = new();
+ _drawingBulldozer = new DrawingBulldozer();
+ _drawingBulldozer.Init(random.Next(100, 300), random.Next(1000, 3000),
+ Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)),
+ Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)),
+ Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)));
+ _drawingBulldozer.SetPictureSize(pictureBoxBulldozer.Width, pictureBoxBulldozer.Height);
+ _drawingBulldozer.SetPozition(random.Next(0, pictureBoxBulldozer.Width), random.Next(0, pictureBoxBulldozer.Height));
+
+ Draw();
+
+ }
+
+
+
+ private void ButtonMove_Click(object sender, EventArgs e)
+ {
+ if (_drawingBulldozer == null)
+ {
+ return;
+ }
+
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ bool result = false;
+ switch (name)
+ {
+ case "buttonUp":
+ result = _drawingBulldozer.MoveTransport(DirectionType.Up);
+ break;
+ case "buttonDown":
+ result = _drawingBulldozer.MoveTransport(DirectionType.Down);
+ break;
+ case "buttonLeft":
+ result = _drawingBulldozer.MoveTransport(DirectionType.Left);
+ break;
+ case "buttonRight":
+ result = _drawingBulldozer.MoveTransport(DirectionType.Right);
+ break;
+ }
+
+ if (result)
+ {
+ Draw();
+ }
+ }
+
+ }
+}
diff --git a/ProjectBulldozer/FormBulldozer.resx b/ProjectBulldozer/FormBulldozer.resx
new file mode 100644
index 0000000..8b2ff64
--- /dev/null
+++ b/ProjectBulldozer/FormBulldozer.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/ProjectBulldozer/Program.cs b/ProjectBulldozer/Program.cs
new file mode 100644
index 0000000..ce4d1f0
--- /dev/null
+++ b/ProjectBulldozer/Program.cs
@@ -0,0 +1,17 @@
+namespace ProjectBulldozer
+{
+ 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
diff --git a/ProjectBulldozer/ProjectBulldozer.csproj b/ProjectBulldozer/ProjectBulldozer.csproj
new file mode 100644
index 0000000..af03d74
--- /dev/null
+++ b/ProjectBulldozer/ProjectBulldozer.csproj
@@ -0,0 +1,26 @@
+
+
+
+ WinExe
+ net8.0-windows
+ enable
+ true
+ enable
+
+
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+
\ No newline at end of file
diff --git a/ProjectBulldozer/Properties/Resources.Designer.cs b/ProjectBulldozer/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..e1a515c
--- /dev/null
+++ b/ProjectBulldozer/Properties/Resources.Designer.cs
@@ -0,0 +1,103 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+namespace ProjectBulldozer.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("ProjectBulldozer.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/ProjectBulldozer/Properties/Resources.resx b/ProjectBulldozer/Properties/Resources.resx
new file mode 100644
index 0000000..0e8c322
--- /dev/null
+++ b/ProjectBulldozer/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\arrowUp.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowDown.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowLeft.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowRight.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/ProjectBulldozer/Resources/arrowDown.jpg b/ProjectBulldozer/Resources/arrowDown.jpg
new file mode 100644
index 0000000..f21002e
Binary files /dev/null and b/ProjectBulldozer/Resources/arrowDown.jpg differ
diff --git a/ProjectBulldozer/Resources/arrowLeft.jpg b/ProjectBulldozer/Resources/arrowLeft.jpg
new file mode 100644
index 0000000..61b8dae
Binary files /dev/null and b/ProjectBulldozer/Resources/arrowLeft.jpg differ
diff --git a/ProjectBulldozer/Resources/arrowRight.jpg b/ProjectBulldozer/Resources/arrowRight.jpg
new file mode 100644
index 0000000..b440197
Binary files /dev/null and b/ProjectBulldozer/Resources/arrowRight.jpg differ
diff --git a/ProjectBulldozer/Resources/arrowUp.jpg b/ProjectBulldozer/Resources/arrowUp.jpg
new file mode 100644
index 0000000..e630cea
Binary files /dev/null and b/ProjectBulldozer/Resources/arrowUp.jpg differ