@@ -3,4 +3,19 @@ package org.bukkit.entity;
|
||||
/**
|
||||
* Represents a Zoglin.
|
||||
*/
|
||||
public interface Zoglin extends Monster { }
|
||||
public interface Zoglin extends Monster {
|
||||
|
||||
/**
|
||||
* Gets whether the zoglin is a baby
|
||||
*
|
||||
* @return Whether the zoglin is a baby
|
||||
*/
|
||||
public boolean isBaby();
|
||||
|
||||
/**
|
||||
* Sets whether the zoglin is a baby
|
||||
*
|
||||
* @param flag Whether the zoglin is a baby
|
||||
*/
|
||||
public void setBaby(boolean flag);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user