ИСЭбд-21 Чегодаев Александр лаб 1 простая #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "lab1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Зачтено с понижением балла(ов)
@ -0,0 +38,4 @@
return true;
}
public void SetPosition(int x, int y)
Нет корректировки координат, если при текущих объект "выходит" за границы
@ -0,0 +40,4 @@
public void SetPosition(int x, int y)
{
if (x <= _pictureWidth - _cruiserWidth && y <= _pictureHeight - _cruiserHeight)
Не учтены все условия, при которых объект может выйти за границы
@ -0,0 +62,4 @@
}
else if (_startPosX - EntityCruiser.Step < 0)
{
_startPosX = _startPosX - _startPosX + 3;
Что за "+3"?
Pull request closed