diff --git a/WarmlyShip/WarmlyShip/DirectionType.cs b/WarmlyShip/WarmlyShip/DirectionType.cs new file mode 100644 index 0000000..c024bdd --- /dev/null +++ b/WarmlyShip/WarmlyShip/DirectionType.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace WarmlyShip +{ + public enum DirectionType + { + Up = 1, + Down = 2, + Left = 3, + Right = 4 + } +} diff --git a/WarmlyShip/WarmlyShip/DrawningWarmlyShip.cs b/WarmlyShip/WarmlyShip/DrawningWarmlyShip.cs new file mode 100644 index 0000000..c15d995 --- /dev/null +++ b/WarmlyShip/WarmlyShip/DrawningWarmlyShip.cs @@ -0,0 +1,176 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace WarmlyShip +{ + public class DrawningWarmlyShip + { + public EntityWarmlyShip? EntityWarmlyShip { get; private set; } + + private int? _pictureWidth; + + private int? _pictureHeight; + + private int? _startPosX; + + private int? _startPosY; + private readonly int _drawningWarmlyShipWidth = 150; + + private readonly int _drawningWarmlyShipHeight = 80; + + + + public void Init(int speed, double weight, Color bodyColor, Color seckondColor, bool fuelHole, bool pipes) + { + EntityWarmlyShip = new EntityWarmlyShip(); + EntityWarmlyShip.Init(speed, weight, bodyColor, seckondColor, fuelHole, pipes); + _pictureHeight = null; + _pictureWidth = null; + _startPosX = null; + _startPosY = null; + } + public bool SetPictureSize(int width, int height) + { + if (width > _drawningWarmlyShipWidth && height > _drawningWarmlyShipHeight) + { + _pictureWidth = width; + _pictureHeight = height; + if (_startPosX != null && _startPosY != null) + { + if (_startPosX.Value + _drawningWarmlyShipWidth > _pictureWidth) + { + _startPosX = _pictureWidth - _drawningWarmlyShipWidth; + } + if (_startPosY.Value + _drawningWarmlyShipHeight > _pictureHeight) + { + _startPosY = _pictureHeight - _drawningWarmlyShipHeight; + } + } + return true; + } + return false; + + } + public void SetPosition(int x, int y) + { + if (!_pictureHeight.HasValue || !_pictureWidth.HasValue) + { + return; + } + else + { + _startPosX = x; + _startPosY = y; + + if (_startPosX < 0) _startPosX = 0; + if (_startPosY < 0) _startPosY = 0; + + if (_startPosX + _drawningWarmlyShipWidth > _pictureWidth.Value) + { + _startPosX = _pictureWidth.Value - _drawningWarmlyShipWidth; + } + if (_startPosY + _drawningWarmlyShipHeight > _pictureHeight.Value) + { + _startPosY = _pictureHeight.Value - _drawningWarmlyShipHeight; + } + } + + } + public bool MoveTransport(DirectionType direction) + { + if (EntityWarmlyShip == null || !_startPosX.HasValue || !_startPosY.HasValue) + { + return false; + } + + switch (direction) + { + case DirectionType.Left: + if (_startPosX.Value - EntityWarmlyShip.Step > 0) + { + _startPosX -= (int)EntityWarmlyShip.Step; + } + return true; + + case DirectionType.Up: + if (_startPosY.Value - EntityWarmlyShip.Step > 0) + { + _startPosY -= (int)EntityWarmlyShip.Step; + } + return true; + + case DirectionType.Right: + if (_startPosX.Value + _drawningWarmlyShipWidth + EntityWarmlyShip.Step < _pictureWidth) + { + _startPosX += (int)EntityWarmlyShip.Step; + } + return true; + + case DirectionType.Down: + if (_startPosY.Value + _drawningWarmlyShipHeight + EntityWarmlyShip.Step < _pictureHeight) + { + _startPosY += (int)EntityWarmlyShip.Step; + } + return true; + + default : return false; + } + } + + public void DrawTransport(Graphics g) + { + if (EntityWarmlyShip == null || !_startPosX.HasValue || !_startPosY.HasValue) + { + return; + } + + + // нарисовать корабль + Pen pen = new(Color.Black, 2); + Brush brMain = new SolidBrush(EntityWarmlyShip.BodyColor); + Brush brSecond = new SolidBrush(EntityWarmlyShip.SeckondColor); + // трапеция + Point[] points = new Point[] + { + + new Point(_startPosX.Value, _startPosY.Value+50), + new Point(_startPosX.Value + 150, _startPosY.Value+ 50), + new Point(_startPosX.Value + 120, _startPosY.Value + 80), + new Point(_startPosX.Value + 30, _startPosY.Value + 80) + + }; + g.FillPolygon(brMain, points); + g.DrawPolygon(pen, points); + + //палуба + g.FillRectangle(brMain, _startPosX.Value + 25, _startPosY.Value + 30, 100, 20); + g.DrawRectangle(pen, _startPosX.Value + 25, _startPosY.Value + 30, 100, 20); + + //якорь + g.DrawLine(pen, _startPosX.Value + 30, _startPosY.Value + 53, _startPosX.Value + 30, _startPosY.Value + 70); + g.DrawLine(pen, _startPosX.Value + 23, _startPosY.Value + 70, _startPosX.Value + 37, _startPosY.Value + 70); + g.DrawLine(pen, _startPosX.Value + 23, _startPosY.Value + 60, _startPosX.Value + 37, _startPosY.Value + 60); + + Brush blackBr = new SolidBrush(Color.Black); + + //трубы + if (EntityWarmlyShip.Pipes) + { + + g.FillRectangle(brSecond, _startPosX.Value + 35, _startPosY.Value, 20, 30); + g.FillRectangle(brSecond, _startPosX.Value + 64, _startPosY.Value, 20, 30); + g.FillRectangle(brSecond, _startPosX.Value + 93, _startPosY.Value, 20, 30); + } + + //топливный отсек + if (EntityWarmlyShip.FuelHole) + { + g.FillEllipse(brSecond, _startPosX.Value + 100, _startPosY.Value + 55, 15, 15); + g.DrawEllipse(pen, _startPosX.Value + 100, _startPosY.Value + 55, 15, 15); + } + } + } +} diff --git a/WarmlyShip/WarmlyShip/EntityWarmlyShip.cs b/WarmlyShip/WarmlyShip/EntityWarmlyShip.cs new file mode 100644 index 0000000..f9b9da2 --- /dev/null +++ b/WarmlyShip/WarmlyShip/EntityWarmlyShip.cs @@ -0,0 +1,62 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace WarmlyShip +{ + public class EntityWarmlyShip + { + /// + /// Скорость + /// + public int Speed { get; private set; } + + /// + /// Вес + /// + public double Weight { get; private set; } + + /// + /// Основной цвет + /// + public Color BodyColor { get; private set; } + + /// + /// доп. цвет + /// + public Color SeckondColor { get; private set; } + + /// + /// признак наличия отсека для топлива + /// + public bool FuelHole { get; private set; } + + /// + /// Признак наличия трубы + /// + public bool Pipes { get; private set; } + + /// + /// + /// + /// скорость + /// вес + /// основной цвет + /// доп. цвет + /// признак наличия отсека для топлива + /// признак наличия трубы + public void Init(int speed, double weight, Color bodyColor, Color seckondColor, bool fuelHole, bool pipes) + { + Speed = speed; + Weight = weight; + BodyColor = bodyColor; + SeckondColor = seckondColor; + FuelHole = fuelHole; + Pipes = pipes; + + } + public double Step => Speed * 100 / Weight; + } +} diff --git a/WarmlyShip/WarmlyShip/Form1.Designer.cs b/WarmlyShip/WarmlyShip/Form1.Designer.cs deleted file mode 100644 index ccb85c2..0000000 --- a/WarmlyShip/WarmlyShip/Form1.Designer.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace WarmlyShip -{ - 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); - } - //123 - #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 - } -} \ No newline at end of file diff --git a/WarmlyShip/WarmlyShip/Form1.cs b/WarmlyShip/WarmlyShip/Form1.cs deleted file mode 100644 index bca3f86..0000000 --- a/WarmlyShip/WarmlyShip/Form1.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace WarmlyShip -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/WarmlyShip/WarmlyShip/Program.cs b/WarmlyShip/WarmlyShip/Program.cs index 341c406..f86ea64 100644 --- a/WarmlyShip/WarmlyShip/Program.cs +++ b/WarmlyShip/WarmlyShip/Program.cs @@ -11,7 +11,7 @@ namespace WarmlyShip // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new Form1()); + Application.Run(new pictureBoxShips()); } } } \ No newline at end of file diff --git a/WarmlyShip/WarmlyShip/Properties/Resources.Designer.cs b/WarmlyShip/WarmlyShip/Properties/Resources.Designer.cs new file mode 100644 index 0000000..b783bc0 --- /dev/null +++ b/WarmlyShip/WarmlyShip/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace WarmlyShip.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("WarmlyShip.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/WarmlyShip/WarmlyShip/Properties/Resources.resx b/WarmlyShip/WarmlyShip/Properties/Resources.resx new file mode 100644 index 0000000..293419e --- /dev/null +++ b/WarmlyShip/WarmlyShip/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.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 + + + ..\Resources\arrowUp.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/WarmlyShip/WarmlyShip/Resources/arrowDown.jpg b/WarmlyShip/WarmlyShip/Resources/arrowDown.jpg new file mode 100644 index 0000000..f21002e Binary files /dev/null and b/WarmlyShip/WarmlyShip/Resources/arrowDown.jpg differ diff --git a/WarmlyShip/WarmlyShip/Resources/arrowLeft.jpg b/WarmlyShip/WarmlyShip/Resources/arrowLeft.jpg new file mode 100644 index 0000000..61b8dae Binary files /dev/null and b/WarmlyShip/WarmlyShip/Resources/arrowLeft.jpg differ diff --git a/WarmlyShip/WarmlyShip/Resources/arrowRight.jpg b/WarmlyShip/WarmlyShip/Resources/arrowRight.jpg new file mode 100644 index 0000000..b440197 Binary files /dev/null and b/WarmlyShip/WarmlyShip/Resources/arrowRight.jpg differ diff --git a/WarmlyShip/WarmlyShip/Resources/arrowUp.jpg b/WarmlyShip/WarmlyShip/Resources/arrowUp.jpg new file mode 100644 index 0000000..e630cea Binary files /dev/null and b/WarmlyShip/WarmlyShip/Resources/arrowUp.jpg differ diff --git a/WarmlyShip/WarmlyShip/WarmlyShip.csproj b/WarmlyShip/WarmlyShip/WarmlyShip.csproj index e1a0735..244387d 100644 --- a/WarmlyShip/WarmlyShip/WarmlyShip.csproj +++ b/WarmlyShip/WarmlyShip/WarmlyShip.csproj @@ -8,4 +8,19 @@ enable + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + \ No newline at end of file diff --git a/WarmlyShip/WarmlyShip/pictureBoxShips.Designer.cs b/WarmlyShip/WarmlyShip/pictureBoxShips.Designer.cs new file mode 100644 index 0000000..aae1e59 --- /dev/null +++ b/WarmlyShip/WarmlyShip/pictureBoxShips.Designer.cs @@ -0,0 +1,135 @@ +namespace WarmlyShip +{ + partial class pictureBoxShips + { + /// + /// 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() + { + pictureBox1 = new PictureBox(); + buttonDown = new Button(); + buttonUp = new Button(); + buttonRight = new Button(); + buttonLeft = new Button(); + buttonCreate = new Button(); + ((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit(); + SuspendLayout(); + // + // pictureBox1 + // + pictureBox1.Dock = DockStyle.Fill; + pictureBox1.Location = new Point(0, 0); + pictureBox1.Name = "pictureBox1"; + pictureBox1.Size = new Size(854, 493); + pictureBox1.TabIndex = 0; + pictureBox1.TabStop = false; + // + // buttonDown + // + buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonDown.BackgroundImage = Properties.Resources.arrowDown; + buttonDown.BackgroundImageLayout = ImageLayout.Stretch; + buttonDown.Location = new Point(766, 446); + buttonDown.Name = "buttonDown"; + buttonDown.Size = new Size(35, 35); + buttonDown.TabIndex = 10; + buttonDown.UseVisualStyleBackColor = true; + buttonDown.Click += ButtonMove_Click; + // + // buttonUp + // + buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonUp.BackgroundImage = Properties.Resources.arrowUp; + buttonUp.BackgroundImageLayout = ImageLayout.Stretch; + buttonUp.Location = new Point(766, 405); + buttonUp.Name = "buttonUp"; + buttonUp.Size = new Size(35, 35); + buttonUp.TabIndex = 9; + buttonUp.UseVisualStyleBackColor = true; + buttonUp.Click += ButtonMove_Click; + // + // buttonRight + // + buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonRight.BackgroundImage = Properties.Resources.arrowRight; + buttonRight.BackgroundImageLayout = ImageLayout.Stretch; + buttonRight.Location = new Point(807, 446); + buttonRight.Name = "buttonRight"; + buttonRight.Size = new Size(35, 35); + buttonRight.TabIndex = 8; + 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(725, 446); + buttonLeft.Name = "buttonLeft"; + buttonLeft.Size = new Size(35, 35); + buttonLeft.TabIndex = 7; + buttonLeft.UseVisualStyleBackColor = true; + buttonLeft.Click += ButtonMove_Click; + // + // buttonCreate + // + buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + buttonCreate.Location = new Point(17, 458); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(75, 23); + buttonCreate.TabIndex = 6; + buttonCreate.Text = "создать"; + buttonCreate.UseVisualStyleBackColor = true; + buttonCreate.Click += ButtonCreate_Click; + // + // pictureBoxShips + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(854, 493); + Controls.Add(buttonDown); + Controls.Add(buttonUp); + Controls.Add(buttonRight); + Controls.Add(buttonLeft); + Controls.Add(buttonCreate); + Controls.Add(pictureBox1); + Name = "pictureBoxShips"; + StartPosition = FormStartPosition.CenterScreen; + Text = "pictureBoxShips"; + ((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit(); + ResumeLayout(false); + } + + #endregion + + private PictureBox pictureBox1; + private Button buttonDown; + private Button buttonUp; + private Button buttonRight; + private Button buttonLeft; + private Button buttonCreate; + } +} \ No newline at end of file diff --git a/WarmlyShip/WarmlyShip/pictureBoxShips.cs b/WarmlyShip/WarmlyShip/pictureBoxShips.cs new file mode 100644 index 0000000..28146e8 --- /dev/null +++ b/WarmlyShip/WarmlyShip/pictureBoxShips.cs @@ -0,0 +1,80 @@ +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 WarmlyShip +{ + public partial class pictureBoxShips : Form + { + private DrawningWarmlyShip? _drawningWarmlyShip; + public pictureBoxShips() + { + InitializeComponent(); + } + + private void Draw() + { + + if (_drawningWarmlyShip == null) + { + return; + } + + Bitmap bmp = new(pictureBox1.Width, pictureBox1.Height); + Graphics gr = Graphics.FromImage(bmp); + _drawningWarmlyShip.DrawTransport(gr); + pictureBox1.Image = bmp; + } + + private void ButtonCreate_Click(object sender, EventArgs e) + { + Random random = new(); + _drawningWarmlyShip = new DrawningWarmlyShip(); + _drawningWarmlyShip.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))); + _drawningWarmlyShip.SetPictureSize(pictureBox1.Width, pictureBox1.Height); + _drawningWarmlyShip.SetPosition(random.Next(10, 100), random.Next(10, 100)); + + Draw(); + } + + private void ButtonMove_Click(object sender, EventArgs e) + { + if (_drawningWarmlyShip == null) + { + return; + } + + string name = ((Button)sender)?.Name ?? string.Empty; + bool result = false; + switch (name) + { + case "buttonUp": + result = _drawningWarmlyShip.MoveTransport(DirectionType.Up); + break; + case "buttonDown": + result = _drawningWarmlyShip.MoveTransport(DirectionType.Down); + break; + case "buttonLeft": + result = _drawningWarmlyShip.MoveTransport(DirectionType.Left); + break; + case "buttonRight": + result = _drawningWarmlyShip.MoveTransport(DirectionType.Right); + break; + } + + if (result) + { + Draw(); + } + } + } +} diff --git a/WarmlyShip/WarmlyShip/Form1.resx b/WarmlyShip/WarmlyShip/pictureBoxShips.resx similarity index 93% rename from WarmlyShip/WarmlyShip/Form1.resx rename to WarmlyShip/WarmlyShip/pictureBoxShips.resx index 1af7de1..af32865 100644 --- a/WarmlyShip/WarmlyShip/Form1.resx +++ b/WarmlyShip/WarmlyShip/pictureBoxShips.resx @@ -1,17 +1,17 @@  -