added missing file

This commit is contained in:
Space Toad 2011-07-29 20:58:31 +00:00
parent 14b6dbe4f5
commit f2a1b244e8

View file

@ -0,0 +1,13 @@
/**
* This software is provided under the terms of the Minecraft Forge Public
* License v1.0.
*/
package net.minecraft.src.forge;
import net.minecraft.src.Block;
import net.minecraft.src.ItemTool;
public interface IHarvestHandler {
public boolean canHarvestBlock(ItemTool item, Block block);
}