19 lines
466 B
Java
19 lines
466 B
Java
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents a Primed TNT.
|
|
*/
|
|
public interface TNTPrimed extends Explosive {
|
|
/**
|
|
* Set the number of ticks until the TNT blows up after being primed.
|
|
* @param fuseTicks
|
|
*/
|
|
public void setFuseTicks(int fuseTicks);
|
|
|
|
/**
|
|
* Retrieve the number of ticks until the explosion of this TNTPrimed entity
|
|
* @return the number of ticks until this TNTPrimed explodes
|
|
*/
|
|
public int getFuseTicks();
|
|
}
|