summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDinnerbone <dinnerbone@dinnerbone.com>2011-01-03 16:34:29 +0000
committerDinnerbone <dinnerbone@dinnerbone.com>2011-01-03 16:34:29 +0000
commit660032073711a6fe5f0ec25560ce3c66aa730a22 (patch)
tree1336bf7f26083a4714fb59fba4fddfceb231a9b1 /src
parentc9490d7efcdb3a6fed87ec02b9b3824080b26523 (diff)
downloadbukkit-660032073711a6fe5f0ec25560ce3c66aa730a22.tar
bukkit-660032073711a6fe5f0ec25560ce3c66aa730a22.tar.gz
bukkit-660032073711a6fe5f0ec25560ce3c66aa730a22.tar.lz
bukkit-660032073711a6fe5f0ec25560ce3c66aa730a22.tar.xz
bukkit-660032073711a6fe5f0ec25560ce3c66aa730a22.zip
... Entity has no health.
Diffstat (limited to 'src')
-rw-r--r--src/main/java/org/bukkit/Entity.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main/java/org/bukkit/Entity.java b/src/main/java/org/bukkit/Entity.java
index cf9ace2a..773354d0 100644
--- a/src/main/java/org/bukkit/Entity.java
+++ b/src/main/java/org/bukkit/Entity.java
@@ -32,17 +32,4 @@ public interface Entity {
* @return Entity ID
*/
public int getEntityID();
- /**
- * Gets the entitys health from 0-20, where 0 is dead and 20 is full
- *
- * @return Health represented from 0-20
- */
- public int getHealth();
-
- /**
- * Sets the entitys health from 0-20, where 0 is dead and 20 is full
- *
- * @param health New health represented from 0-20
- */
- public void setHealth(int health);
}