diff options
| author | Ascynx <78341107+Ascynx@users.noreply.github.com> | 2022-09-16 17:25:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-16 17:25:28 +0200 |
| commit | 53cc06e8badfc34ee5c54062ed24639fb4c88886 (patch) | |
| tree | cd3bc0506f76edf5228b7ff30c760e20e39b2f72 /src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiInvButtonEditor.java | |
| parent | ff5b80cd0f2068077d3343aa4e479e6284b41276 (diff) | |
| download | notenoughupdates-53cc06e8badfc34ee5c54062ed24639fb4c88886.tar.gz notenoughupdates-53cc06e8badfc34ee5c54062ed24639fb4c88886.tar.bz2 notenoughupdates-53cc06e8badfc34ee5c54062ed24639fb4c88886.zip | |
petHud/EquipmentHud preview render fix (#293)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiInvButtonEditor.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiInvButtonEditor.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiInvButtonEditor.java b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiInvButtonEditor.java index 4d18ea18..7aa0d2ec 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiInvButtonEditor.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiInvButtonEditor.java @@ -85,6 +85,15 @@ public class GuiInvButtonEditor extends GuiScreen { private int guiLeft; private int guiTop; + //region getGuiCoordinates + public int getGuiLeft() { + return this.guiLeft; + } + public int getGuiTop() { + return this.guiTop; + } + //endregion + private static final int BACKGROUND_TYPES = 5; private static final int ICON_TYPES = 3; private int iconTypeIndex = 0; |
