aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java
diff options
context:
space:
mode:
authorRabbitType99 <luis.be@gmx.de>2021-03-09 23:27:30 +0100
committerRabbitType99 <luis.be@gmx.de>2021-03-09 23:27:30 +0100
commitcb5106e11c553108a63b9aa8b44c70a449ef627d (patch)
tree4a498919931327c7fff10d9891c9551b4181de1b /src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java
parent87f5d4c76b907da4fb5952e7dff5ebad88b080d8 (diff)
parente7237307e71c649b4b7c880259ff1781fcc7c435 (diff)
downloadSkyblockMod-cb5106e11c553108a63b9aa8b44c70a449ef627d.tar.gz
SkyblockMod-cb5106e11c553108a63b9aa8b44c70a449ef627d.tar.bz2
SkyblockMod-cb5106e11c553108a63b9aa8b44c70a449ef627d.zip
Merge branch 'development' into InstallerFrame
# Conflicts: # build.gradle
Diffstat (limited to 'src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java')
-rw-r--r--src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java b/src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java
new file mode 100644
index 0000000..eecbb41
--- /dev/null
+++ b/src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java
@@ -0,0 +1,22 @@
+package me.Danker.events;
+
+import net.minecraft.client.gui.inventory.GuiChest;
+import net.minecraft.inventory.Slot;
+import net.minecraftforge.fml.common.eventhandler.Event;
+
+import java.util.List;
+
+public class GuiChestBackgroundDrawnEvent extends Event {
+ public final GuiChest chest;
+ public final String displayName;
+ public final int chestSize;
+ public final List<Slot> slots;
+
+ public GuiChestBackgroundDrawnEvent(GuiChest chest, String displayName, int chestSize, List<Slot> slots) {
+ this.chest = chest;
+ this.displayName = displayName;
+ this.chestSize = chestSize;
+ this.slots = slots;
+ }
+
+}