aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/ScreenRenderPostEvent.kt
blob: 43b7c01d3c2788f0b59292378cb0a14b44b39f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package moe.nea.firmament.events

import net.minecraft.client.gui.GuiGraphics
import net.minecraft.client.gui.screens.Screen

data class ScreenRenderPostEvent(
    val screen: Screen,
    val mouseX: Int,
    val mouseY: Int,
    val tickDelta: Float,
    val drawContext: GuiGraphics
) : FirmamentEvent() {
    companion object : FirmamentEventBus<ScreenRenderPostEvent>()
}