Изменил(а) на 'HoistingCrane/HoistingCrane/FormHoistingCrane.cs'

This commit is contained in:
RomanovEgor 2022-10-10 20:03:36 +04:00 committed by 10Г Егор Романов
parent 0b264223c2
commit ec3080e9fd

View File

@ -14,11 +14,11 @@ namespace HoistingCrane
public bool Сounterweight { get; private set; }
public Color DopColor { get; set; }
public EntityAdvancedHoistingCrane(int speed, float weight, Color bodyColor, Color dopColor, bool crane, bool counterweight) :
public EntityAdvancedHoistingCrane(int speed, float weight, Color bodyColor, Color dopColor, bool crane, bool counterWeight) :
base(speed, weight, bodyColor)
{
Crane = crane;
Сounterweight = counterweight;
Сounterweight = counterWeight;
DopColor = dopColor;
}
}