Introduce compat source sets and move all kotlin sources to the main directory [no changelog]
11 lines
326 B
Kotlin
11 lines
326 B
Kotlin
|
|
|
|
package moe.nea.firmament.events
|
|
|
|
import net.minecraft.client.gui.screen.ingame.HandledScreen
|
|
|
|
data class HandledScreenClickEvent(val screen: HandledScreen<*>, val mouseX: Double, val mouseY: Double, val button: Int) :
|
|
FirmamentEvent.Cancellable() {
|
|
companion object : FirmamentEventBus<HandledScreenClickEvent>()
|
|
}
|