diff --git a/WarmlyShip/WarmlyShip/MapWithSetShipGeneric.cs b/WarmlyShip/WarmlyShip/MapWithSetShipGeneric.cs index 1f8a387..50b81eb 100644 --- a/WarmlyShip/WarmlyShip/MapWithSetShipGeneric.cs +++ b/WarmlyShip/WarmlyShip/MapWithSetShipGeneric.cs @@ -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); } }