blob: be65c79737190b9d50aea1feee51ef7af5a5231b [file] [log] [blame] [raw]
package li.cil.oc.client.computer
import li.cil.oc.common.computer.IInternalComputerContext
import net.minecraft.nbt.NBTTagCompound
class Computer(val owner: AnyRef) extends IInternalComputerContext {
def luaState = null
def start() = false
def update() {}
def lock() {}
def unlock() {}
def signal(pid: Int, name: String, args: Any*) {}
def readFromNBT(nbt: NBTTagCompound) {}
def writeToNBT(nbt: NBTTagCompound) {}
}