2014-11-13 09:24:29 -05:00
|
|
|
package WayofTime.alchemicalWizardry.api.spell;
|
2014-06-27 19:43:09 -04:00
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
|
2014-10-13 22:33:20 +02:00
|
|
|
public interface IOnBreakBlock
|
2014-06-27 19:43:09 -04:00
|
|
|
{
|
2015-07-02 11:05:07 -04:00
|
|
|
int onBlockBroken(ItemStack container, World world, EntityPlayer player, Block block, int meta, int x, int y, int z, ForgeDirection sideBroken);
|
2014-06-27 19:43:09 -04:00
|
|
|
}
|