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