resonant-induction/APIs/icbm/api/explosion/IExplosiveContainer.java
2013-07-22 18:24:55 -04:00

17 lines
345 B
Java

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