Mekanism-tilera-Edition/common/cofh/api/tileentity/ISidedBlockTexture.java
2013-11-14 21:58:32 -05:00

16 lines
366 B
Java

package cofh.api.tileentity;
import net.minecraft.util.Icon;
/**
* Implement this interface on Tile Entities which can change their block's texture based on the current render pass. The block must defer the call to its Tile
* Entity.
*
* @author Zeldo Kavira
*
*/
public interface ISidedBlockTexture {
public Icon getBlockTexture(int side, int pass);
}