Added setFireTicks(), getFireTicks() and getMaxFireTicks().
This commit is contained in:
parent
97a604b835
commit
85a4bbce35
@ -42,4 +42,25 @@ public interface Entity {
|
|||||||
* @return Entity id
|
* @return Entity id
|
||||||
*/
|
*/
|
||||||
public int getEntityId();
|
public int getEntityId();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the entity's current fire ticks (ticks before the entity stops being on fire).
|
||||||
|
*
|
||||||
|
* @return int fireTicks
|
||||||
|
*/
|
||||||
|
public int getFireTicks();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the entity's maximum fire ticks.
|
||||||
|
*
|
||||||
|
* @return int maxFireTicks
|
||||||
|
*/
|
||||||
|
public int getMaxFireTicks();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the entity's current fire ticks (ticks before the entity stops being on fire).
|
||||||
|
*
|
||||||
|
* @param ticks
|
||||||
|
*/
|
||||||
|
public void setFireTicks(int ticks);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user