aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/features
diff options
context:
space:
mode:
authorsyeyoung <cyong06@naver.com>2021-07-21 00:46:23 +0900
committersyeyoung <cyong06@naver.com>2021-07-21 00:46:23 +0900
commit4850d1a1f795f625286b9a2058143f688265dc3d (patch)
tree5ed6a93797a12751aa86e22998a053422f7542c1 /src/main/java/kr/syeyoung/dungeonsguide/features
parenta6009e4aef3a8f8b641733d62034bf629afd7053 (diff)
downloadSkyblock-Dungeons-Guide-4850d1a1f795f625286b9a2058143f688265dc3d.tar.gz
Skyblock-Dungeons-Guide-4850d1a1f795f625286b9a2058143f688265dc3d.tar.bz2
Skyblock-Dungeons-Guide-4850d1a1f795f625286b9a2058143f688265dc3d.zip
Window Update Event
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/features')
-rw-r--r--src/main/java/kr/syeyoung/dungeonsguide/features/listener/GuiUpdateListener.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/features/listener/GuiUpdateListener.java b/src/main/java/kr/syeyoung/dungeonsguide/features/listener/GuiUpdateListener.java
new file mode 100644
index 00000000..a52baac7
--- /dev/null
+++ b/src/main/java/kr/syeyoung/dungeonsguide/features/listener/GuiUpdateListener.java
@@ -0,0 +1,26 @@
+/*
+ * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
+ * Copyright (C) 2021 cyoung06
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published
+ * by the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+package kr.syeyoung.dungeonsguide.features.listener;
+
+import kr.syeyoung.dungeonsguide.events.WindowUpdateEvent;
+import net.minecraftforge.client.event.GuiScreenEvent;
+
+public interface GuiUpdateListener {
+ void onGuiUpdate(WindowUpdateEvent windowUpdateEvent);
+}