/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/items/machine/IItemFluidIdentifier.java
21 строка
477 B
Bob
fixes
08 май 2022, 22:42
08 май 2022, 22:42
416e2e6
Код
Авторство
О чём код?
package com.hbm.items.machine; import com.hbm.inventory.fluid.FluidType; import net.minecraft.item.ItemStack; import net.minecraft.world.World; public interface IItemFluidIdentifier { /** * World might be null if the ID is used inside of a GUI * Position only has to be accurate when used in-world * @param world * @param x * @param y * @param z * @param stack * @return */ public FluidType getType(World world, int x, int y, int z, ItemStack stack); }