From fb8fb88b9196d64ada3d77f09bd4c0a55a8b9083 Mon Sep 17 00:00:00 2001 From: ChipsEater Date: Tue, 13 Sep 2022 17:13:15 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=BF.=20=D0=B7=D0=B0=D0=B4=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SelfPropelledArtilleryUnit/FormArtillery.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SelfPropelledArtilleryUnit/FormArtillery.cs b/SelfPropelledArtilleryUnit/FormArtillery.cs index b053a9a..0335929 100644 --- a/SelfPropelledArtilleryUnit/FormArtillery.cs +++ b/SelfPropelledArtilleryUnit/FormArtillery.cs @@ -21,10 +21,10 @@ namespace Artilleries Random rnd = new(); _artillery = new DrawingArtillery(); _artillery.Init(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256))); - _artillery.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100), pictureBoxArtilleries.Width, pictureBoxArtilleries.Height); - SpeedStatusLabel.Text = $"Скорость: {_artillery.Artillery.Speed}"; - WeightStatusLabel.Text = $"Вес: {_artillery.Artillery.Weight}"; - ColorStatusLabel.Text = $"Цвет: {_artillery.Artillery.BodyColor.Name}"; + _artillery.SetPosition(rnd.Next(pictureBoxArtilleries.Width - 161, pictureBoxArtilleries.Width - 81), rnd.Next(10, 100), pictureBoxArtilleries.Width, pictureBoxArtilleries.Height); + SpeedStatusLabel.Text = $"Скорость: {_artillery.Artillery.Speed}"; + WeightStatusLabel.Text = $"Вес: {_artillery.Artillery.Weight}"; + ColorStatusLabel.Text = $"Цвет: {_artillery.Artillery.BodyColor.Name}"; Draw(); }