PhysicalConnectivity/src/main/kotlin/net/shadowfacts/phycon/util/ClientConfigurableDevice.kt

15 lines
243 B
Kotlin

package net.shadowfacts.phycon.util
import net.minecraft.nbt.CompoundTag
/**
* @author shadowfacts
*/
interface ClientConfigurableDevice {
fun writeDeviceConfiguration(tag: CompoundTag)
fun loadDeviceConfiguration(tag: CompoundTag)
}