From ed09a0e092224731ea71d60de4e6a3a863039379 Mon Sep 17 00:00:00 2001 From: malimova Date: Mon, 16 Oct 2023 12:52:06 +0400 Subject: [PATCH] =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=81=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AirBomber/AirBomber/DrawningAirPlane.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AirBomber/AirBomber/DrawningAirPlane.cs b/AirBomber/AirBomber/DrawningAirPlane.cs index f805255..7401eef 100644 --- a/AirBomber/AirBomber/DrawningAirPlane.cs +++ b/AirBomber/AirBomber/DrawningAirPlane.cs @@ -45,7 +45,7 @@ namespace AirBomber /// Основной цвет /// Ширина картинки /// Высота картинки - public DrawningAirPlane(int speed, double weight, Color bodyColor, int + /*public DrawningAirPlane(int speed, double weight, Color bodyColor, int width, int height) { // TODO: Продумать проверки @@ -56,7 +56,7 @@ namespace AirBomber _pictureWidth = width; _pictureHeight = height; EntityAirPlane = new EntityAirPlane(speed, weight, bodyColor); - } + }*/ /// /// Конструктор /// @@ -270,7 +270,7 @@ namespace AirBomber } } /// - /// Получение объекта IMoveableObject из объекта DrawningCar + /// Получение объекта IMoveableObject из объекта DrawningAirPlane /// public IMoveableObject GetMoveableObject => new DrawningObjectAirPlane(this);