A special thanks goes to @aerouk for almost all of the changes found here. By: Wesley Wolfe <weswolf@aol.com>
17 lines
370 B
Java
17 lines
370 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();
|
|
}
|