summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-21 02:11:09 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-21 02:11:09 +0100
commitcdff2f52c54f05c96b9ca62a536392dd51e49e3f (patch)
tree692ba97250e55e28aa27d52d3877cc34def644c8 /src/main/java/at/hannibal2/skyhanni/events
parent26ac6919de473490299142fee3e6fea98048d028 (diff)
downloadskyhanni-cdff2f52c54f05c96b9ca62a536392dd51e49e3f.tar.gz
skyhanni-cdff2f52c54f05c96b9ca62a536392dd51e49e3f.tar.bz2
skyhanni-cdff2f52c54f05c96b9ca62a536392dd51e49e3f.zip
Render always.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/GuiRenderEvent.kt10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/GuiRenderEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/GuiRenderEvent.kt
new file mode 100644
index 000000000..9b7cebced
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/events/GuiRenderEvent.kt
@@ -0,0 +1,10 @@
+package at.hannibal2.skyhanni.events
+
+class GuiRenderEvent(val type: RenderType): LorenzEvent() {
+
+ enum class RenderType {
+ INVENTORY_BACKGROUND,
+ IN_WORLD,
+ ;
+ }
+} \ No newline at end of file