//Assignment 4 Andrew Wilkie

public class Gps extends CarDecorator{

	public Gps(Car newCar) {
		super(newCar);
		System.out.println("GPS added");
	}
	

	public String getDescription(){
		
		return tempCar.getDescription() + ", GPS";
	}
	
public double getCost(){
		
		return tempCar.getCost() + 200.00;
	}
	

}