aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/GuiClickEvent.kt
blob: 13e74f1892ac54f4a874639bfb41401ff0758661 (plain)
1
2
3
4
5
6
7
8
9
package moe.nea.ledger

import net.minecraft.inventory.Slot
import net.minecraftforge.fml.common.eventhandler.Event

data class GuiClickEvent(
    val slotIn: Slot?, val slotId: Int, val clickedButton: Int, val clickType: Int
) : Event() {
}