Introduce compat source sets and move all kotlin sources to the main directory [no changelog]
17 lines
377 B
Kotlin
17 lines
377 B
Kotlin
|
|
|
|
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>()
|
|
}
|