Added new entity.get/setTicksLived for identifying an entity's age

This commit is contained in:
Nathan Adams 2011-10-11 02:22:38 +01:00
parent c89a0dbe99
commit 537840d1df

View File

@ -173,4 +173,23 @@ public interface Entity {
* @return unique id * @return unique id
*/ */
public UUID getUniqueId(); public UUID getUniqueId();
/**
* Gets the amount of ticks this entity has lived for.
* <p>
* This is the equivalent to "age" in entities.
*
* @return Age of entity
*/
public int getTicksLived();
/**
* Sets the amount of ticks this entity has lived for.
* <p>
* This is the equivalent to "age" in entities. May not be
* less than one tick.
*
* @param value Age of entity
*/
public void setTicksLived(int value);
} }