aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/HandledScreenForegroundEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/events/HandledScreenForegroundEvent.kt')
-rw-r--r--src/main/kotlin/events/HandledScreenForegroundEvent.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/kotlin/events/HandledScreenForegroundEvent.kt b/src/main/kotlin/events/HandledScreenForegroundEvent.kt
index f16d30e..3a3d7f6 100644
--- a/src/main/kotlin/events/HandledScreenForegroundEvent.kt
+++ b/src/main/kotlin/events/HandledScreenForegroundEvent.kt
@@ -2,12 +2,12 @@
package moe.nea.firmament.events
-import net.minecraft.client.gui.DrawContext
-import net.minecraft.client.gui.screen.ingame.HandledScreen
+import net.minecraft.client.gui.GuiGraphics
+import net.minecraft.client.gui.screens.inventory.AbstractContainerScreen
data class HandledScreenForegroundEvent(
- val screen: HandledScreen<*>,
- val context: DrawContext,
+ val screen: AbstractContainerScreen<*>,
+ val context: GuiGraphics,
val mouseX: Int,
val mouseY: Int,
val delta: Float