mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
22 lines
597 B
Java
22 lines
597 B
Java
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();
|
|
}
|