Romanov E.V. LabWork6 #18

Closed
RomanovEgor wants to merge 13 commits from 6LAB into 5LAB
Showing only changes of commit ec3080e9fd - Show all commits

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