Bondarenko M.S. Lab Work 3 #8

Merged
eegov merged 12 commits from LabWork_03 into LabWork_02 2022-11-07 12:10:38 +04:00
Showing only changes of commit 0e2fe47f20 - Show all commits

View File

@ -110,9 +110,12 @@ namespace WarmlyShip
private void DrawShips(Graphics g)
{
for (int i = 0; i < _setShips.Count; i++)
for (int i = 0; i < _setShips.Count; ++i)
{
// TODO установка позиции
if (_setShips.Get(i) != null )
{
}
_setShips.Get(i)?.DrawningObject(g);
}
}