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

15 lines
243 B
Kotlin
Raw Normal View History

2021-03-03 03:32:30 +00:00
package net.shadowfacts.phycon.util
import net.minecraft.nbt.CompoundTag
/**
* @author shadowfacts
*/
interface ClientConfigurableDevice {
fun writeDeviceConfiguration(tag: CompoundTag)
fun loadDeviceConfiguration(tag: CompoundTag)
}