package org.bukkit.entity; /** * Represents a Witch */ public interface Witch extends Raider { /** * Gets whether the witch is drinking a potion * * @return whether the witch is drinking a potion */ boolean isDrinkingPotion(); }