Files
Paper/paper-api/src/main/java/org/bukkit/entity/Wolf.java
Bukkit/Spigot 855f4133b6 Whitespace + general cleanup
By: Erik Broes <erikbroes@grum.nl>
2011-05-14 23:22:54 +02:00

39 lines
797 B
Java

package org.bukkit.entity;
/**
* Represents a Wolf
*/
public interface Wolf extends Animals, Tameable {
/**
* Checks if this wolf is angry
*
* @return Anger true if angry
*/
public boolean isAngry();
/**
* Sets the anger of this wolf
* An angry wolf can not be fed or tamed, and will actively look for targets to attack.
*
* @param angry true if angry
*/
public void setAngry(boolean angry);
/**
* Checks if this wolf is sitting
*
* @return true if sitting
*/
public boolean isSitting();
/**
* Sets if this wolf is sitting
* Will remove any path that the wolf was following beforehand.
*
* @param sitting true if sitting
*/
public void setSitting(boolean sitting);
}