mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 15:30:19 +01:00
Rename EntityHuman -> HumanEntity
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
9edbd3958d
commit
2306dd52d7
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ package org.bukkit;
|
|||
/**
|
||||
* Represents a human entity, such as an NPC or a player
|
||||
*/
|
||||
public interface EntityHuman extends LivingEntity {
|
||||
public interface HumanEntity extends LivingEntity {
|
||||
/**
|
||||
* Gets the item this entity has currently selected, which will be shown in
|
||||
* their hand
|
|
@ -5,7 +5,7 @@ package org.bukkit;
|
|||
* Represents a player, connected or not
|
||||
*
|
||||
*/
|
||||
public interface Player extends EntityHuman {
|
||||
public interface Player extends HumanEntity {
|
||||
/**
|
||||
* Returns the name of this player
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue