Files
Bukkit/src/main/java/org/bukkit/entity/TNTPrimed.java
2011-09-25 02:56:40 +01:00

19 lines
481 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 The fuse ticks
*/
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();
}