Karamushko M.K. lab1_base #2

Merged
eegov merged 4 commits from lab1_base into master 2022-10-07 09:38:44 +04:00
Showing only changes of commit eda0bc77d9 - Show all commits

View File

@ -29,10 +29,8 @@ namespace AirFighter
{
if (width < _airFighterWidth || height < _airFighterHeight) return;
if (_startPosX + _airFighterWidth > _pictureWidth) return;
if (_startPosX < 0) return;
if (_startPosY < 0) return;
if (_startPosY + _airFighterHeight > _pictureHeight) return;
if (x + _airFighterWidth > width || x < 0) return;
if (y + _airFighterHeight > height || y < 0) return;
_startPosX = x;
_startPosY = y;