GT5-Unofficial/main/java/gregtech/api/interfaces/tileentity/ITexturedTileEntity.java
2015-04-23 18:14:22 +02:00

10 lines
234 B
Java

package gregtech.api.interfaces.tileentity;
import gregtech.api.interfaces.ITexture;
public interface ITexturedTileEntity {
/**
* @return the Textures rendered by the GT Rendering
*/
public ITexture[] getTexture(byte aSide);
}