/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/api/hbm/item/IDepthRockTool.java
22 строки
593 B
Boblet
fixed ore dict for red copper and neutron reflectors, IC2 compat config
20 авг 2021, 13:02
20 авг 2021, 13:02
7cbc863
Код
Авторство
О чём код?
package api.hbm.item; import net.minecraft.block.Block; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.world.World; public interface IDepthRockTool { /** * Whether our item can break depthrock, has a couple of params so we can restrict mining for certain blocks, dimensions or positions * @param world * @param player * @param tool * @param block * @param x * @param y * @param z * @return */ public boolean canBreakRock(World world, EntityPlayer player, ItemStack tool, Block block, int x, int y, int z); }