/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/blocks/IProxyController.java
15 строк
427 B
Bob
inventory proxy for blast furnace extension, cast metal sploosh particle
20 мар 2023, 23:12
20 мар 2023, 23:12
22e96fe
Код
Авторство
О чём код?
package com.hbm.blocks; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; /** * Custom handling that tells TileEntityProxyBase where the core for a given proxy block is. * BlockDummyable doesn't implement this since it already has its own standardized core finding code. * * @author hbm */ public interface IProxyController { public TileEntity getCore(World world, int x, int y, int z); }