Added Entity.remove() which marks an entity for removal.

By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-02-18 20:00:18 -08:00
parent c0710323a9
commit d3a7253d68

View File

@ -63,4 +63,9 @@ public interface Entity {
* @param ticks
*/
public void setFireTicks(int ticks);
/**
* Mark the entity's removal.
*/
public void remove();
}