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

This commit is contained in:
sk89q
2011-02-18 20:00:18 -08:00
parent fbfa048463
commit 0558646377

View File

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