aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/ScreenRenderPostEvent.kt
blob: 79f49137b2a682f196104fe2d296a85fb4a9330b (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.DrawContext
import net.minecraft.client.gui.screen.Screen

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