Готовая вторая лабораторная работа.

This commit is contained in:
Anastasia 2022-12-08 20:45:14 +04:00
parent e1eb80499e
commit e4d8c8d135
2 changed files with 1 additions and 5 deletions

View File

@ -57,8 +57,7 @@ namespace AirplaneWithRadar
/// <param name="bodyColor">Цвет кузова</param>
/// <param name="airplaneWidth">Ширина отрисовки самолета</param>
/// <param name="airplaneHeight">Высота отрисовки самолета</param>
protected DrawingAirplane(int speed, float weight, Color bodyColor, int airplaneWidth, int airplaneHeight) :
this(speed, weight, bodyColor)
protected DrawingAirplane(int speed, float weight, Color bodyColor, int airplaneWidth, int airplaneHeight) : this(speed, weight, bodyColor)
{
_airplaneWidth = airplaneWidth;
_airplaneHeight = airplaneHeight;

View File

@ -6,9 +6,6 @@ using System.Threading.Tasks;
namespace AirplaneWithRadar
{
/// <summary>
/// Собственная реализация абсрактного класса AbstractMap
/// </summary>
internal class LineMap : AbstractMap
{
/// <summary>