исправил проверку

This commit is contained in:
YakovlevMaxim 2023-10-09 18:22:01 +04:00
parent bdf0062316
commit 941e8dcfd0

View File

@ -47,8 +47,8 @@ namespace SailBoat.DrawningObjects
public DrawningBoat(int speed, double weight, Color bodyColor, int width, int height)
{
if (width < 200) { width = 900; }
if (height < 200) { height = 500; }
if (width < _boatWidth) { width = 900; }
if (height < _boatHeight) { height = 500; }
_pictureWidth = width;
_pictureHeight = height;
EntityBoat = new EntityBoat(speed, weight, bodyColor);