package org.bukkit.entity; /** * Represents a Slime. */ public interface Slime extends Mob, Enemy { /** * @return The size of the slime */ public int getSize(); /** * Setting the size of the slime (regardless of previous size) * will set the following attributes: * * to their per-size defaults and heal the * slime to its max health (assuming it's alive). * * @param sz The new size of the slime. */ public void setSize(int sz); }