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

This commit is contained in:
sk89q 2011-02-18 20:00:18 -08:00
parent eaddcfc675
commit 5e7a59167d

View File

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