blob: 2167270e6c97c23d0d9e7a8f66c9cd2ca7fde1ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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();
}
|