17 lines
345 B
Java
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();
|
|
}
|