blob: 8d010bc879a7be50ae8285e3b57388ad1fc53ba5 [file] [log] [blame] [raw]
package li.cil.oc.common.tileentity
import li.cil.oc.api
import net.minecraft.nbt.NBTTagCompound
trait Persistable extends api.Persistable {
def save(nbt: NBTTagCompound) {}
def load(nbt: NBTTagCompound) {}
}