aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator/client/GUI
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/goodgenerator/client/GUI')
-rw-r--r--src/main/java/goodgenerator/client/GUI/GG_UITextures.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/goodgenerator/client/GUI/GG_UITextures.java b/src/main/java/goodgenerator/client/GUI/GG_UITextures.java
new file mode 100644
index 0000000000..2b9bc8df84
--- /dev/null
+++ b/src/main/java/goodgenerator/client/GUI/GG_UITextures.java
@@ -0,0 +1,22 @@
+package goodgenerator.client.GUI;
+
+import com.gtnewhorizons.modularui.api.drawable.UITexture;
+
+public class GG_UITextures {
+
+ private static final String MODID = "goodgenerator";
+
+ public static final UITexture PICTURE_NAQUADAH_REACTOR = UITexture.fullImage(MODID, "gui/picture/naquadah_reactor");
+ public static final UITexture PICTURE_NEUTRON_ACTIVATOR = UITexture
+ .fullImage(MODID, "gui/picture/neutron_activator");
+ public static final UITexture PICTURE_EXTREME_HEAT_EXCHANGER = UITexture
+ .fullImage(MODID, "gui/picture/extreme_heat_exchanger");
+ public static final UITexture PICTURE_COMPONENT_ASSLINE = UITexture
+ .fullImage(MODID, "gui/picture/component_assline");
+ public static final UITexture OVERLAY_BUTTON_LOCK_OFF = UITexture.fullImage(MODID, "gui/overlay_button/lock_off");
+ public static final UITexture OVERLAY_BUTTON_LOCK_ON = UITexture.fullImage(MODID, "gui/overlay_button/lock_on");
+ public static final UITexture OVERLAY_BUTTON_ASSEMBLER_MODE = UITexture
+ .fullImage(MODID, "gui/overlay_button/assembler_mode");
+ public static final UITexture OVERLAY_BUTTON_PRECISE_MODE = UITexture
+ .fullImage(MODID, "gui/overlay_button/precise_mode");
+}