21 lines
520 B
Kotlin
21 lines
520 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
package moe.nea.firmament.events
|
|
|
|
import net.minecraft.client.gui.DrawContext
|
|
import net.minecraft.client.gui.screen.ingame.HandledScreen
|
|
|
|
data class HandledScreenForegroundEvent(
|
|
val screen: HandledScreen<*>,
|
|
val context: DrawContext,
|
|
val mouseX: Int,
|
|
val mouseY: Int,
|
|
val delta: Float
|
|
) : FirmamentEvent() {
|
|
companion object : FirmamentEventBus<HandledScreenForegroundEvent>()
|
|
}
|