summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/entity/WitherSkull.java
blob: 33d20abc04a6629b67668f3267e527abe1d05a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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();
}