resonant-induction/APIs/icbm/api/explosion/IExplosiveContainer.java

18 lines
345 B
Java
Raw Normal View History

package icbm.api.explosion;
import net.minecraft.nbt.NBTTagCompound;
/**
2013-07-23 00:24:55 +02:00
* An object that contains a reference to IExplosive. Carried by explosives, grenades and missile
* entities etc.
*
* @author Calclavia
*
*/
2013-07-23 00:24:55 +02:00
public interface IExplosiveContainer
{
public NBTTagCompound getTagCompound();
public IExplosive getExplosiveType();
}