PIbd-23_Dolgov_D.A._Airbus..../EntityAdvancedAirbus.java

16 lines
476 B
Java
Raw Normal View History

2022-12-05 18:09:08 +04:00
import java.awt.*;
public class EntityAdvancedAirbus extends EntityAirbus{
public final Color ExtraColor;
public final boolean SuperTurbine;
public final boolean ExtraCell;
public EntityAdvancedAirbus(int speed, float weight, Color bodyColor, Color extraColor, boolean superTurbine, boolean extraCell)
{
super(speed, weight, bodyColor);
ExtraColor = extraColor;
SuperTurbine = superTurbine;
ExtraCell = extraCell;
}
}