ISEbd-22 Alimova M.S. Lab Work 03 #3

Closed
malimova wants to merge 12 commits from Lab3 into Lab2
Showing only changes of commit ed09a0e092 - Show all commits

View File

@ -45,7 +45,7 @@ namespace AirBomber
/// <param name="bodyColor">Основной цвет</param>
/// <param name="width">Ширина картинки</param>
/// <param name="height">Высота картинки</param>
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);
}
}*/
/// <summary>
/// Конструктор
/// </summary>
@ -270,7 +270,7 @@ namespace AirBomber
}
}
/// <summary>
/// Получение объекта IMoveableObject из объекта DrawningCar
/// Получение объекта IMoveableObject из объекта DrawningAirPlane
/// </summary>
public IMoveableObject GetMoveableObject => new
DrawningObjectAirPlane(this);