aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/IIconContainer.java
blob: 0b185b387a24feee9599004ea7df30ddadc88fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package gregtech.api.interfaces;

import net.minecraft.util.IIcon;
import net.minecraft.util.ResourceLocation;

public interface IIconContainer {
    /**
     * @return A regular Icon.
     */
    IIcon getIcon();

    /**
     * @return Icon of the Overlay (or null if there is no Icon)
     */
    IIcon getOverlayIcon();

    /**
     * @return the Default Texture File for this Icon.
     */
    ResourceLocation getTextureFile();
}