diff options
author | Maxim <maxim235@gmx.de> | 2023-03-16 17:59:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 17:59:38 +0100 |
commit | e445e444e465326ca8e263f03f0a6708c19ea5e1 (patch) | |
tree | b40b817c837a81ec48a2351e4697c4071734d96b /src/main/java/goodgenerator/client/GUI/GG_UITextures.java | |
parent | 1d25115add66a6fa74984da931948b6139300931 (diff) | |
download | GT5-Unofficial-e445e444e465326ca8e263f03f0a6708c19ea5e1.tar.gz GT5-Unofficial-e445e444e465326ca8e263f03f0a6708c19ea5e1.tar.bz2 GT5-Unofficial-e445e444e465326ca8e263f03f0a6708c19ea5e1.zip |
Add mode toggle button to PrAss GUI (#144)
* Added button to toggle mode on PrAss
* Derp
* Switched to cycle button
Diffstat (limited to 'src/main/java/goodgenerator/client/GUI/GG_UITextures.java')
-rw-r--r-- | src/main/java/goodgenerator/client/GUI/GG_UITextures.java | 4 |
1 files changed, 4 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 index bf51238575..97d4599562 100644 --- a/src/main/java/goodgenerator/client/GUI/GG_UITextures.java +++ b/src/main/java/goodgenerator/client/GUI/GG_UITextures.java @@ -15,4 +15,8 @@ public class GG_UITextures { .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"); } |