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);