Готовая Лабораторная 2
This commit is contained in:
parent
a3c081c02a
commit
bac51aa40c
@ -5,7 +5,7 @@ public enum CountWheels {
|
|||||||
Five(5);
|
Five(5);
|
||||||
private final int Value;
|
private final int Value;
|
||||||
CountWheels(int Count){
|
CountWheels(int Count){
|
||||||
Value=Count;
|
Value = Count;
|
||||||
}
|
}
|
||||||
public int getCountWheels(){
|
public int getCountWheels(){
|
||||||
return Value;
|
return Value;
|
||||||
|
@ -6,8 +6,7 @@ public class EntityTank extends EntityArmoVehicle {
|
|||||||
public boolean Caterpillar;
|
public boolean Caterpillar;
|
||||||
public boolean Tower;
|
public boolean Tower;
|
||||||
|
|
||||||
public EntityTank(int speed, double weight, Color bodyColor, int _numWheel, Color additionalColor, boolean bodyKit, boolean caterpillar, 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);
|
super(speed, weight, bodyColor, _numWheel);
|
||||||
AdditionalColor = additionalColor;
|
AdditionalColor = additionalColor;
|
||||||
BodyKit = bodyKit;
|
BodyKit = bodyKit;
|
||||||
|
Loading…
Reference in New Issue
Block a user