001 package org.bukkit.entity; 002 003 /** 004 * Represents a wither skull {@link Fireball}. 005 */ 006 public interface WitherSkull extends Fireball { 007 008 /** 009 * Sets the charged status of the wither skull. 010 * 011 * @param charged whether it should be charged 012 */ 013 public void setCharged(boolean charged); 014 015 /** 016 * Gets whether or not the wither skull is charged. 017 * 018 * @return whether the wither skull is charged 019 */ 020 public boolean isCharged(); 021 }