Готовая лабораторная 3

This commit is contained in:
Никита Белянин 2023-11-12 21:50:24 +04:00
parent f36e6da08d
commit 647d39432c

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