001 package org.bukkit.entity;
002
003 /**
004 * Represents a Primed TNT.
005 */
006 public interface TNTPrimed extends Explosive {
007 /**
008 * Set the number of ticks until the TNT blows up after being primed.
009 *
010 * @param fuseTicks The fuse ticks
011 */
012 public void setFuseTicks(int fuseTicks);
013
014 /**
015 * Retrieve the number of ticks until the explosion of this TNTPrimed entity
016 *
017 * @return the number of ticks until this TNTPrimed explodes
018 */
019 public int getFuseTicks();
020 }