aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/events/HotbarItemRenderEvent.kt
blob: 59660ce28c67190b43981ba95b921fc5af58b881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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.item.ItemStack

data class HotbarItemRenderEvent(
    val item: ItemStack,
    val context: DrawContext,
    val x: Int,
    val y: Int,
    val tickDelta: Float,
) : FirmamentEvent() {
    companion object : FirmamentEventBus<HotbarItemRenderEvent>()
}