2012-02-29 21:31:33 -05:00

18 lines
281 B
Java

package org.bukkit.entity;
/**
* Represents a Slime.
*/
public interface Slime extends LivingEntity {
/**
* @return The size of the slime
*/
public int getSize();
/**
* @param sz The new size of the slime.
*/
public void setSize(int sz);
}