27
paper-api/src/main/java/org/bukkit/entity/Goat.java
Normal file
27
paper-api/src/main/java/org/bukkit/entity/Goat.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package org.bukkit.entity;
|
||||
|
||||
/**
|
||||
* A Goat.
|
||||
*/
|
||||
public interface Goat extends Animals {
|
||||
|
||||
/**
|
||||
* Gets if this is a screaming goat.
|
||||
*
|
||||
* A screaming goat makes screaming sounds and rams more often. They do not
|
||||
* offer home loans.
|
||||
*
|
||||
* @return screaming status
|
||||
*/
|
||||
boolean isScreaming();
|
||||
|
||||
/**
|
||||
* Sets if this is a screaming goat.
|
||||
*
|
||||
* A screaming goat makes screaming sounds and rams more often. They do not
|
||||
* offer home loans.
|
||||
*
|
||||
* @param screaming screaming status
|
||||
*/
|
||||
void setScreaming(boolean screaming);
|
||||
}
|
||||
Reference in New Issue
Block a user