ISEbd-21 Nikolay Gapon LabWork01 #1

Merged
eegov merged 3 commits from LabWork01 into master 2022-10-28 09:53:50 +04:00
Showing only changes of commit b965721782 - Show all commits

View File

@ -55,7 +55,7 @@ namespace Airbus
if (_startPosX + _airbusWidth + airbus.Step - 6 < _pictureWidth) _startPosX += airbus.Step;
break;
case Direction.Down: //Вниз
if (_startPosY + _airbusHeight + airbus.Step < _pictureHeight) _startPosY += airbus.Step;
if (_startPosY + _airbusHeight + airbus.Step + 25 < _pictureHeight) _startPosY += airbus.Step;
break;
}
}