resonant-induction/APIs/icbm/api/explosion/IExplosiveContainer.java
2013-07-22 01:20:20 -04:00

16 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();
}