Заполнение уже сделанных в прошлой лабе TODOs

This commit is contained in:
malimova 2023-10-07 10:53:33 +04:00
parent fd17593df5
commit 379eabc701

View File

@ -67,6 +67,10 @@ namespace AirBomber
width, int height, int airPlaneWidth, int airPlaneHeight) width, int height, int airPlaneWidth, int airPlaneHeight)
{ {
// TODO: Продумать проверки // TODO: Продумать проверки
if (width < _airPlaneWidth || height < _airPlaneHeight)
{
return;
}
_pictureWidth = width; _pictureWidth = width;
_pictureHeight = height; _pictureHeight = height;
_airPlaneWidth = airPlaneWidth; _airPlaneWidth = airPlaneWidth;