mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
351 B
Java
18 lines
351 B
Java
package com.hbm.blocks;
|
|
|
|
import cpw.mods.fml.client.registry.RenderingRegistry;
|
|
|
|
public interface IBlockMultiPass {
|
|
|
|
public int getPasses();
|
|
|
|
public static int renderID = RenderingRegistry.getNextAvailableRenderId();
|
|
public static int getRenderType() {
|
|
return renderID;
|
|
}
|
|
|
|
public default boolean shouldRenderItemMulti() {
|
|
return false;
|
|
}
|
|
}
|