GT5-Unofficial/main/java/gregtech/api/interfaces/tileentity/ITexturedTileEntity.java

10 lines
234 B
Java
Raw Normal View History

2015-04-23 16:14:22 +00:00
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);
}