PhysicalConnectivity/src/main/kotlin/net/shadowfacts/phycon/packet/ReadGroupedInventoryPacket.kt

14 lines
326 B
Kotlin

package net.shadowfacts.phycon.packet
import alexiil.mc.lib.attributes.item.GroupedItemInvView
import net.shadowfacts.phycon.api.util.IPAddress
/**
* @author shadowfacts
*/
class ReadGroupedInventoryPacket(
val inventory: GroupedItemInvView,
source: IPAddress,
destination: IPAddress
): BasePacket(source, destination)