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

15 lines
243 B
Kotlin

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