diff options
| author | Lorenz <ESs95s3P5z8Pheb> | 2022-07-14 11:26:34 +0200 |
|---|---|---|
| committer | Lorenz <ESs95s3P5z8Pheb> | 2022-07-14 11:26:34 +0200 |
| commit | c65416e03ce0791c4a99e9bdfc18c0fa0863028a (patch) | |
| tree | 653e7e8bbfce0cb2f25592fd48b531f863c3575e /src/main/java/com/thatgravyboat/amod/GuiTextures.java | |
| parent | b2108f37f551fba5cb43f4919d69e5db7bb1e44c (diff) | |
| download | SkyHanni-c65416e03ce0791c4a99e9bdfc18c0fa0863028a.tar.gz SkyHanni-c65416e03ce0791c4a99e9bdfc18c0fa0863028a.tar.bz2 SkyHanni-c65416e03ce0791c4a99e9bdfc18c0fa0863028a.zip | |
remove old sbh/skyblockhud code
Diffstat (limited to 'src/main/java/com/thatgravyboat/amod/GuiTextures.java')
| -rw-r--r-- | src/main/java/com/thatgravyboat/amod/GuiTextures.java | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/java/com/thatgravyboat/amod/GuiTextures.java b/src/main/java/com/thatgravyboat/amod/GuiTextures.java new file mode 100644 index 000000000..605fc5c00 --- /dev/null +++ b/src/main/java/com/thatgravyboat/amod/GuiTextures.java @@ -0,0 +1,32 @@ +package com.thatgravyboat.amod; + +import net.minecraft.util.ResourceLocation; + +public class GuiTextures { + + private GuiTextures() {} + + public static final ResourceLocation DISCORD = new ResourceLocation("lorenzmod:discord.png"); + + public static final ResourceLocation button_tex = new ResourceLocation("lorenzmod:button.png"); + + public static final ResourceLocation button_white = new ResourceLocation("lorenzmod:button_white.png"); + + public static final ResourceLocation BAR = new ResourceLocation("lorenzmod:core/bar.png"); + public static final ResourceLocation OFF = new ResourceLocation("lorenzmod:core/toggle_off.png"); + public static final ResourceLocation ONE = new ResourceLocation("lorenzmod:core/toggle_1.png"); + public static final ResourceLocation TWO = new ResourceLocation("lorenzmod:core/toggle_2.png"); + public static final ResourceLocation THREE = new ResourceLocation("lorenzmod:core/toggle_3.png"); + public static final ResourceLocation ON = new ResourceLocation("lorenzmod:core/toggle_on.png"); + public static final ResourceLocation DELETE = new ResourceLocation("lorenzmod:core/delete.png"); + + public static final ResourceLocation slider_off_cap = new ResourceLocation("lorenzmod:core/slider/slider_off_cap.png"); + public static final ResourceLocation slider_off_notch = new ResourceLocation("lorenzmod:core/slider/slider_off_notch.png"); + public static final ResourceLocation slider_off_segment = new ResourceLocation("lorenzmod:core/slider/slider_off_segment.png"); + public static final ResourceLocation slider_on_cap = new ResourceLocation("lorenzmod:core/slider/slider_on_cap.png"); + public static final ResourceLocation slider_on_notch = new ResourceLocation("lorenzmod:core/slider/slider_on_notch.png"); + public static final ResourceLocation slider_on_segment = new ResourceLocation("lorenzmod:core/slider/slider_on_segment.png"); + public static final ResourceLocation slider_button_new = new ResourceLocation("lorenzmod:core/slider/slider_button.png"); + + public static final ResourceLocation mapOverlay = new ResourceLocation("lorenzmod", "maps/map_overlay.png"); +} |
