From e364de18cbcbc9f334d890703812876789374bab Mon Sep 17 00:00:00 2001 From: ThatGravyBoat Date: Sat, 17 Jul 2021 01:26:21 -0230 Subject: Added the ability to turn off the map for certain locations and added the ability for texture pack devs to add textures for npc dialogue --- src/main/java/com/thatgravyboat/skyblockhud/GuiTextures.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/java/com/thatgravyboat/skyblockhud/GuiTextures.java') diff --git a/src/main/java/com/thatgravyboat/skyblockhud/GuiTextures.java b/src/main/java/com/thatgravyboat/skyblockhud/GuiTextures.java index 95a9499..07b7bfc 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/GuiTextures.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/GuiTextures.java @@ -19,6 +19,7 @@ public class GuiTextures { public static final ResourceLocation TWO = new ResourceLocation("skyblockhud:core/toggle_2.png"); public static final ResourceLocation THREE = new ResourceLocation("skyblockhud:core/toggle_3.png"); public static final ResourceLocation ON = new ResourceLocation("skyblockhud:core/toggle_on.png"); + public static final ResourceLocation DELETE = new ResourceLocation("skyblockhud:core/delete.png"); public static final ResourceLocation slider_off_cap = new ResourceLocation("skyblockhud:core/slider/slider_off_cap.png"); public static final ResourceLocation slider_off_notch = new ResourceLocation("skyblockhud:core/slider/slider_off_notch.png"); -- cgit