mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
Add getWidth + getHeight for Entity
By: bramhaag <bramhagens@hotmail.nl>
This commit is contained in:
parent
7b6cf91ff5
commit
2a2b2324e0
1 changed files with 14 additions and 0 deletions
|
@ -52,6 +52,20 @@ public interface Entity extends Metadatable, CommandSender, Nameable {
|
|||
*/
|
||||
public Vector getVelocity();
|
||||
|
||||
/**
|
||||
* Gets the entity's height
|
||||
*
|
||||
* @return height of entity
|
||||
*/
|
||||
public double getHeight();
|
||||
|
||||
/**
|
||||
* Gets the entity's width
|
||||
*
|
||||
* @return width of entity
|
||||
*/
|
||||
public double getWidth();
|
||||
|
||||
/**
|
||||
* Returns true if the entity is supported by a block. This value is a
|
||||
* state updated by the server and is not recalculated unless the entity
|
||||
|
|
Loading…
Reference in a new issue