mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-09-18 21:45:12 +00:00
[Bleeding] Add setCharged and getCharged to WitherSkull. Adds BUKKIT-3060
This commit is contained in:
parent
a64d07ea71
commit
cd783276fb
1 changed files with 14 additions and 1 deletions
|
@ -1,8 +1,21 @@
|
||||||
package org.bukkit.entity;
|
package org.bukkit.entity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a wither skull {@link Fireball}
|
* Represents a wither skull {@link Fireball}.
|
||||||
*/
|
*/
|
||||||
public interface WitherSkull extends 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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue