001    /**
002     *
003     * @author 
004     */
005    public class HumanEntity extends LivingEntity {
006        /**
007         * Constructor
008         */
009        public HumanEntity() {
010        }
011    
012        /**
013         * Constructor
014         * 
015         * @param human
016         */
017        public HumanEntity(hl human) {
018            super(human);
019        }
020    
021        /**
022         * Returns the entity we're wrapping.
023         * @return
024         */
025        public hl getEntity() {
026            return (hl) entity;
027        }
028    
029        /**
030         * Returns the name
031         * 
032         * @return
033         */
034        public String getName() {
035            return getEntity().aw;
036        }
037    }