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