001 package org.bukkit.entity; 002 003 /** 004 * Represents a single part of a {@link ComplexLivingEntity} 005 */ 006 public interface ComplexEntityPart extends Entity { 007 008 /** 009 * Gets the parent {@link ComplexLivingEntity} of this part. 010 * 011 * @return Parent complex entity 012 */ 013 public ComplexLivingEntity getParent(); 014 }