22 lines
468 B
Java
22 lines
468 B
Java
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents a wither skull {@link Fireball}.
|
|
*/
|
|
public interface WitherSkull extends Fireball {
|
|
|
|
/**
|
|
* Sets the charged status of the wither skull.
|
|
*
|
|
* @param charged whether it should be charged
|
|
*/
|
|
public void setCharged(boolean charged);
|
|
|
|
/**
|
|
* Gets whether or not the wither skull is charged.
|
|
*
|
|
* @return whether the wither skull is charged
|
|
*/
|
|
public boolean isCharged();
|
|
}
|