@@ -1,24 +1,24 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package org.bukkit.entity;
|
||||
import org.bukkit.material.Colorable;
|
||||
|
||||
/**
|
||||
* Represents a Sheep.
|
||||
*
|
||||
* @author Cogito
|
||||
*
|
||||
*/
|
||||
public interface Sheep extends Animals, Colorable {
|
||||
/**
|
||||
* @author Celtic Minstrel
|
||||
* @return Whether the sheep is sheared.
|
||||
*/
|
||||
public boolean isSheared();
|
||||
/**
|
||||
* @author Celtic Minstrel
|
||||
* @param flag Whether to shear the sheep
|
||||
*/
|
||||
public void setSheared(boolean flag);
|
||||
}
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package org.bukkit.entity;
|
||||
import org.bukkit.material.Colorable;
|
||||
|
||||
/**
|
||||
* Represents a Sheep.
|
||||
*
|
||||
* @author Cogito
|
||||
*
|
||||
*/
|
||||
public interface Sheep extends Animals, Colorable {
|
||||
/**
|
||||
* @author Celtic Minstrel
|
||||
* @return Whether the sheep is sheared.
|
||||
*/
|
||||
public boolean isSheared();
|
||||
/**
|
||||
* @author Celtic Minstrel
|
||||
* @param flag Whether to shear the sheep
|
||||
*/
|
||||
public void setSheared(boolean flag);
|
||||
}
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package org.bukkit.entity;
|
||||
|
||||
/**
|
||||
* Represents a Slime.
|
||||
*
|
||||
* @author Cogito
|
||||
*
|
||||
*/
|
||||
public interface Slime extends LivingEntity {
|
||||
/**
|
||||
* @author Celtic Minstrel
|
||||
* @return The size of the slime
|
||||
*/
|
||||
public int getSize();
|
||||
/**
|
||||
* @author Celtic Minstrel
|
||||
* @param sz The new size of the slime.
|
||||
*/
|
||||
public void setSize(int sz);
|
||||
}
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package org.bukkit.entity;
|
||||
|
||||
/**
|
||||
* Represents a Slime.
|
||||
*
|
||||
* @author Cogito
|
||||
*
|
||||
*/
|
||||
public interface Slime extends LivingEntity {
|
||||
/**
|
||||
* @author Celtic Minstrel
|
||||
* @return The size of the slime
|
||||
*/
|
||||
public int getSize();
|
||||
/**
|
||||
* @author Celtic Minstrel
|
||||
* @param sz The new size of the slime.
|
||||
*/
|
||||
public void setSize(int sz);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user