Add image preview

This commit is contained in:
nea
2023-07-22 03:08:56 +02:00
parent 538827af3b
commit cdf3938b77
10 changed files with 231 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
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>()
}