blob: 6ec410ffec66549ef0fe22b391496b1d59fd4569 [file] [log] [blame] [raw]
package li.cil.oc.client.computer
import li.cil.oc.server.computer.IComputerContext
import net.minecraft.nbt.NBTTagCompound
class Computer(val owner: AnyRef) extends IComputerContext {
def luaState = null
def update() {}
def readFromNBT(nbt: NBTTagCompound) {}
def writeToNBT(nbt: NBTTagCompound) {}
}