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