summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/java/org/bukkit/entity/Entity.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/entity/Entity.java b/src/main/java/org/bukkit/entity/Entity.java
index b4a70518..941be7bb 100644
--- a/src/main/java/org/bukkit/entity/Entity.java
+++ b/src/main/java/org/bukkit/entity/Entity.java
@@ -53,6 +53,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
* moves.