/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/tileentity/machine/IRenderFoundry.java
21 строка
597 B
Bob
fixed pouring, proper item rendering in molds
27 сен 2022, 00:27
27 сен 2022, 00:27
50826c1
Код
Авторство
О чём код?
package com.hbm.tileentity.machine; import com.hbm.inventory.material.NTMMaterial; public interface IRenderFoundry { /** Returns whether a molten metal layer should be rendered in the TESR */ public boolean shouldRender(); /** Returns the Y-offset of the molten metal layer */ public double getLevel(); /** Returns the NTM Mat used, mainly for the color */ public NTMMaterial getMat(); /* Return size constraints for the rectangle */ public double minX(); public double maxX(); public double minZ(); public double maxZ(); public double moldHeight(); public double outHeight(); }