Getting ready for release candidate
This commit is contained in:
parent
084e3dd348
commit
96930fc47a
18 changed files with 477 additions and 69 deletions
|
@ -0,0 +1,16 @@
|
|||
package WayofTime.alchemicalWizardry.api.harvest;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IPlantable;
|
||||
|
||||
public interface IHarvestHandler
|
||||
{
|
||||
public boolean canHandleBlock(Block block);
|
||||
|
||||
public int getHarvestMeta(Block block);
|
||||
|
||||
public boolean harvestAndPlant(World world, int xCoord, int yCoord, int zCoord, Block block, int meta);
|
||||
|
||||
public IPlantable getSeedItem(Block block);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue