1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package gregtech.api.interfaces; /** * To allow addons to make use of GT_GuiIcon */ public interface IGuiIcon { int getX(); int getY(); int getWidth(); int getHeight(); int getTexId(); IGuiIcon getOverlay(); }