@@ -5,6 +5,34 @@ package org.bukkit.entity;
|
||||
*/
|
||||
public interface Goat extends Animals {
|
||||
|
||||
/**
|
||||
* Gets if this goat has its left horn.
|
||||
*
|
||||
* @return left horn status
|
||||
*/
|
||||
boolean hasLeftHorn();
|
||||
|
||||
/**
|
||||
* Sets if this goat has its left horn.
|
||||
*
|
||||
* @param hasHorn left horn status
|
||||
*/
|
||||
void setLeftHorn(boolean hasHorn);
|
||||
|
||||
/**
|
||||
* Gets if this goat has its right horn.
|
||||
*
|
||||
* @return right horn status
|
||||
*/
|
||||
boolean hasRightHorn();
|
||||
|
||||
/**
|
||||
* Sets if this goat has its right horn.
|
||||
*
|
||||
* @param hasHorn right horn status
|
||||
*/
|
||||
void setRightHorn(boolean hasHorn);
|
||||
|
||||
/**
|
||||
* Gets if this is a screaming goat.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user