summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/entity/Slime.java
blob: cbf50c8eb031beda381e6cec353ce8ff11796fc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}