/*
 * Cat.java
 *
 * A simple subclass of Animal representing a cat.
 *
 * Author: S-111 Course Staff
 */

public class Cat extends Animal {
    private boolean isShortHaired;

    public boolean isShortHaired() {
        return this.isShortHaired;
    }
}
