summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/entity/ComplexLivingEntity.java
blob: f74411c36508f6cdff358cc8994fd4056692e323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.bukkit.entity;

import java.util.Set;

/**
 * Represents a complex living entity - one that is made up of various smaller
 * parts
 */
public interface ComplexLivingEntity extends LivingEntity {
    /**
     * Gets a list of parts that belong to this complex entity
     *
     * @return List of parts
     */
    public Set<ComplexEntityPart> getParts();
}