blob: 70552ac54db9217e6678e7abff00151350b4f741 [file] [log] [blame] [raw]
package li.cil.oc.common.tileentity
import li.cil.oc.server.component
import net.minecraft.item.ItemStack
class Robot extends Computer with ComponentInventory with Rotatable with Redstone {
val instance = if (true) null else new component.Computer(this)
def getInvName = ""
def getSizeInventory = 0
def isItemValidForSlot(i: Int, itemstack: ItemStack) = false
}