added missing file
This commit is contained in:
parent
14b6dbe4f5
commit
f2a1b244e8
1 changed files with 13 additions and 0 deletions
13
forge/forge_common/net/minecraft/src/forge/IHarvestHandler.java
Executable file
13
forge/forge_common/net/minecraft/src/forge/IHarvestHandler.java
Executable 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);
|
||||||
|
}
|
Loading…
Reference in a new issue