aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/IGuiIcon.java
blob: 0bc74082502dde6e2627344f63d99391811863f3 (plain)
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();
}