blob: ec324666fa1b8f3d88aaa383e731dc8f1ee06717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package client.gui;
import com.gtnewhorizons.modularui.api.drawable.UITexture;
import kekztech.KekzCore;
public class KT_UITextures {
public static final UITexture OVERLAY_BUTTON_WIRELESS_ON = UITexture
.fullImage(KekzCore.MODID, "gui/overlay_button/wireless_on");
public static final UITexture OVERLAY_BUTTON_WIRELESS_OFF = UITexture
.fullImage(KekzCore.MODID, "gui/overlay_button/wireless_off");
public static final UITexture OVERLAY_BUTTON_WIRELESS_OFF_DISABLED = UITexture
.fullImage(KekzCore.MODID, "gui/overlay_button/wireless_off_disabled");
public static final UITexture OVERLAY_BUTTON_WIRELESS_REBALANCE = UITexture
.fullImage(KekzCore.MODID, "gui/overlay_button/wireless_rebalance");
}
|