Files
Paper/paper-api/src/main/java/org/bukkit/entity/Turtle.java

22 lines
387 B
Java

package org.bukkit.entity;
/**
* Represents a turtle.
*/
public interface Turtle extends Animals {
/**
* Gets whether the turtle has an egg
*
* @return Whether the turtle has an egg
*/
boolean hasEgg();
/**
* Gets whether the turtle is laying an egg
*
* @return Whether the turtle is laying an egg
*/
boolean isLayingEgg();
}