Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1/**
2 *
3 */
4package org.bukkit.entity;
5
6import org.bukkit.material.Colorable;
7
8/**
9 * Represents a Sheep.
10 *
11 * @author Cogito
12 *
13 */
14public interface Sheep extends Animals, Colorable {
15
16 /**
17 * @author Celtic Minstrel
18 * @return Whether the sheep is sheared.
19 */
20 public boolean isSheared();
21
22 /**
23 * @author Celtic Minstrel
24 * @param flag Whether to shear the sheep
25 */
26 public void setSheared(boolean flag);
27}