зафиксировал

This commit is contained in:
Макс Бондаренко 2022-10-23 20:55:43 +04:00
parent 3c945af49e
commit 0e2fe47f20

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);
}
}