22 lines
400 B
Java
22 lines
400 B
Java
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents a Camel.
|
|
*/
|
|
public interface Camel extends AbstractHorse {
|
|
|
|
/**
|
|
* Gets whether this camel is dashing (sprinting).
|
|
*
|
|
* @return dashing status
|
|
*/
|
|
boolean isDashing();
|
|
|
|
/**
|
|
* Sets whether this camel is dashing (sprinting).
|
|
*
|
|
* @param dashing new dashing status
|
|
*/
|
|
void setDashing(boolean dashing);
|
|
}
|