aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/ITexturedTileEntity.java
blob: 379111b07e979269ff5127631e74769808ff7b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package gregtech.api.interfaces.tileentity;

import net.minecraft.block.Block;
import net.minecraftforge.common.util.ForgeDirection;

import gregtech.api.interfaces.ITexture;

public interface ITexturedTileEntity {

    /**
     * @return the Textures rendered by the GT Rendering
     */
    ITexture[] getTexture(Block aBlock, ForgeDirection side);
}