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