aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/IGuiIcon.java
blob: 3204c35b4ed6d99023da1b2dfc184bb75ed2726e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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();
}