From f7ed510964d9064e80274b8ffb97e7f939ea6c61 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Mon, 3 Jan 2011 16:34:29 +0000 Subject: [PATCH] ... Entity has no health. By: Dinnerbone --- paper-api/src/main/java/org/bukkit/Entity.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/Entity.java b/paper-api/src/main/java/org/bukkit/Entity.java index cf9ace2a85..773354d070 100644 --- a/paper-api/src/main/java/org/bukkit/Entity.java +++ b/paper-api/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); }