001 package org.bukkit.entity;
002
003 import org.bukkit.material.Colorable;
004
005 /**
006 * Represents a Sheep.
007 */
008 public interface Sheep extends Animals, Colorable {
009
010 /**
011 * @return Whether the sheep is sheared.
012 */
013 public boolean isSheared();
014
015 /**
016 * @param flag Whether to shear the sheep
017 */
018 public void setSheared(boolean flag);
019 }