summary refs log tree commit diff stats
path: root/src/main/kotlin/space/autistic/radio/CommonProxy.kt
blob: 76a4b22ab5334b4b579266c199fd3b80ab4b52ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package space.autistic.radio

import net.minecraft.entity.player.PlayerEntity
import net.minecraft.item.ItemStack
import net.minecraft.util.Hand

open class CommonProxy : SidedProxy {
    override fun useStorageCard(player: PlayerEntity, item: ItemStack, hand: Hand) {
    }
}