29 lines
715 B
Java
29 lines
715 B
Java
import java.awt.*;
|
|
import java.util.Random;
|
|
|
|
public class EntityAirbus {
|
|
private int Speed;
|
|
private float Weight;
|
|
private Color BodyColor;
|
|
|
|
public int getSpeed(){return Speed;}
|
|
public float getWeight(){return Weight;}
|
|
public Color getBodyColor(){return BodyColor;}
|
|
|
|
public float Step(){return Speed * 100 / Weight;}
|
|
|
|
public EntityAirbus(int speed, float weight, Color bodyColor)
|
|
{
|
|
Random rand = new Random();
|
|
if (speed <= 0) speed = rand.nextInt(350, 550);
|
|
else {
|
|
Speed = speed;
|
|
};
|
|
if (weight <= 0) weight = rand.nextFloat(350, 550);
|
|
else {
|
|
Weight = weight;
|
|
}
|
|
BodyColor = bodyColor;
|
|
}
|
|
}
|