BloodMagic/BM_src/forestry/api/arboriculture/ILeafTickHandler.java
2014-01-25 20:36:28 -05:00

8 lines
217 B
Java

package forestry.api.arboriculture;
import net.minecraft.world.World;
public interface ILeafTickHandler {
boolean onRandomLeafTick(ITree tree, World world, int biomeId, int x, int y, int z, boolean isDestroyed);
}