PIbd-11 Valiulov I.A. LabWork04 Hard #4

Closed
Ilyas wants to merge 2 commits from LabWork04 into LabWork03
2 changed files with 0 additions and 3 deletions
Showing only changes of commit b30f5254c1 - Show all commits

View File

@ -4,9 +4,7 @@ import java.awt.*;
public class EntityShip {
private int Speed;
public int getSpeed() {return Speed;}
private double Weight;
public double getWeight() {return Weight;}
private Color BodyColor;
public Color getBodyColor() {return BodyColor;}
public double Step;

View File

@ -5,7 +5,6 @@ public class EntityWarmlyShip extends EntityShip{
public Color AdditionalColor;
public Color getAdditionalColor() {return AdditionalColor;}
public boolean ShipPipes;
public boolean getShipPipes() {return ShipPipes;}
public boolean FuelTank;
public boolean getFuelTank() {return FuelTank;}
public EntityWarmlyShip(int speed, double weight, Color bodyColor, Color additionalcolor, boolean sheeppipes, boolean fueltank)