Rename EntityHuman -> HumanEntity

This commit is contained in:
Dinnerbone
2010-12-30 03:50:08 +00:00
parent 2180eb69ec
commit 592df41bb1
2 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
package org.bukkit;
/**
* Represents a human entity, such as an NPC or a player
*/
public interface HumanEntity extends LivingEntity {
/**
* Gets the item this entity has currently selected, which will be shown in
* their hand
*
* @return ItemStack containing details on the item this entity has selected
*/
public ItemStack getSelectedItem();
}