aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuuz <6596629+Juuxel@users.noreply.github.com>2023-09-09 14:09:53 +0300
committerJuuz <6596629+Juuxel@users.noreply.github.com>2023-09-09 14:09:53 +0300
commit9f810d320dbdb9c58f5f8b6807c24cff9715fe5a (patch)
tree8902f20ae3ff30220a19dc186e8b74cd350ee0f2
parentc891cde665a8f10c9264951085173c37e7aad9fe (diff)
downloadLibGui-9f810d320dbdb9c58f5f8b6807c24cff9715fe5a.tar.gz
LibGui-9f810d320dbdb9c58f5f8b6807c24cff9715fe5a.tar.bz2
LibGui-9f810d320dbdb9c58f5f8b6807c24cff9715fe5a.zip
BackgroundPainter: Update texture paths in javadoc
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/client/BackgroundPainter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/client/BackgroundPainter.java b/src/main/java/io/github/cottonmc/cotton/gui/client/BackgroundPainter.java
index a709b64..52bd317 100644
--- a/src/main/java/io/github/cottonmc/cotton/gui/client/BackgroundPainter.java
+++ b/src/main/java/io/github/cottonmc/cotton/gui/client/BackgroundPainter.java
@@ -32,8 +32,8 @@ public interface BackgroundPainter {
/**
* The {@code VANILLA} background painter draws a vanilla-like GUI panel using nine-patch textures.
*
- * <p>This background painter uses {@code libgui:textures/widget/panel_light.png} as the light texture and
- * {@code libgui:textures/widget/panel_dark.png} as the dark texture.
+ * <p>This background painter uses {@code libgui:textures/gui/sprites/widget/panel_light.png} as the light texture and
+ * {@code libgui:textures/gui/sprites/widget/panel_dark.png} as the dark texture.
*
* <p>This background painter is the default painter for root panels.
* * You can override {@link io.github.cottonmc.cotton.gui.GuiDescription#addPainters()} to customize the painter yourself.