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
2021-12-22 23:59:51 +00:00
import net.minecraft.nbt.NbtCompound
2021-03-03 03:32:30 +00:00
/**
* @author shadowfacts
*/
interface ClientConfigurableDevice {
2021-12-22 23:59:51 +00:00
fun writeDeviceConfiguration(tag: NbtCompound)
2021-03-03 03:32:30 +00:00
2021-12-22 23:59:51 +00:00
fun loadDeviceConfiguration(tag: NbtCompound)
2021-03-03 03:32:30 +00:00
}