PIbd-21 Belianin N.N. LabWork03 Hard #4

Closed
Belnik wants to merge 21 commits from LabWork03 into LabWork02
Showing only changes of commit 647d39432c - Show all commits

View File

@ -5,7 +5,6 @@ public class EntityTank extends EntityArmoVehicle {
public boolean BodyKit;
public boolean Caterpillar;
public boolean Tower;
public EntityTank(int speed, double weight, Color bodyColor, int _numWheel, Color additionalColor, boolean bodyKit, boolean caterpillar, boolean tower) {
super(speed, weight, bodyColor, _numWheel);
AdditionalColor = additionalColor;
@ -13,7 +12,4 @@ public class EntityTank extends EntityArmoVehicle {
Caterpillar = caterpillar;
Tower = tower;
}
}
}