Files
Paper/paper-api/src/main/java/org/bukkit/entity/ComplexLivingEntity.java
2011-12-25 16:02:30 +01:00

16 lines
367 B
Java

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();
}