From 4f5c84eccdad27ca0fcd1b3ddd29a8438530fc88 Mon Sep 17 00:00:00 2001 From: marusya Date: Sun, 5 Nov 2023 21:27:24 +0400 Subject: [PATCH] oo --- .../SelfPropelledArtilleryUnit/DrawningUsta.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SelfPropelledArtilleryUnit/SelfPropelledArtilleryUnit/DrawningUsta.cs b/SelfPropelledArtilleryUnit/SelfPropelledArtilleryUnit/DrawningUsta.cs index 679c4e5..c390668 100644 --- a/SelfPropelledArtilleryUnit/SelfPropelledArtilleryUnit/DrawningUsta.cs +++ b/SelfPropelledArtilleryUnit/SelfPropelledArtilleryUnit/DrawningUsta.cs @@ -68,8 +68,8 @@ namespace SelfPropelledArtilleryUnit.DrawningObjects /// Основной цвет /// Ширина картинки /// Высота картинки - /// Ширина прорисовки установки - /// Высота прорисовки установки + /// Ширина прорисовки установки + /// Высота прорисовки установки protected DrawningUsta(int speed, double weight, Color bodyColor, int width, int height, int ustaWidth, int ustaHeight) { @@ -93,7 +93,7 @@ namespace SelfPropelledArtilleryUnit.DrawningObjects public void SetPosition(int x, int y) { // TODO: Изменение x, y, если при установке объект выходит за границы - if (x < 0 || y < 0) + if (x < 0 || y < 0 || x + _ustaWidth > _pictureWidth || y + _ustaHeight > _pictureHeight) { x = 10; y = 10;