package thirdStage;

public class Cat extends Feline {
	public void playSound() {
		System.out.println("should play cat sound here");
	}
}