blob: 6f28a0280b060adbff92959c3ae9399b5c23f4c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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");
}
|