2014-05-26 10:26:37 +02:00
|
|
|
package appeng.hooks;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public interface IBlockTool
|
|
|
|
{
|
|
|
|
|
2014-09-28 11:47:17 +02:00
|
|
|
boolean onItemUse(ItemStack dispensedItem, EntityPlayer player, World w, int x, int y, int z, int ordinal, float hitX, float hitY, float hitZ);
|
2014-05-26 10:26:37 +02:00
|
|
|
|
|
|
|
}
|