Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1/**
2 *
3 */
4package org.bukkit.entity;
5
6/**
7 * Represents a Slime.
8 *
9 * @author Cogito
10 *
11 */
12public interface Slime extends LivingEntity {
13
14 /**
15 * @author Celtic Minstrel
16 * @return The size of the slime
17 */
18 public int getSize();
19
20 /**
21 * @author Celtic Minstrel
22 * @param sz The new size of the slime.
23 */
24 public void setSize(int sz);
25}