ISEbd-22 Alimova M.S. Lab Work 02 #2

Closed
malimova wants to merge 21 commits from Lab2 into Lab1
Showing only changes of commit 379eabc701 - Show all commits

View File

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