blob: 94b049f3a809720466e0a60f6fe7ddaeb0939589 [file] [log] [blame] [raw]
package li.cil.oc.common.container
import li.cil.oc.common.{Slot, tileentity}
import net.minecraft.entity.player.InventoryPlayer
class DiskDrive(playerInventory: InventoryPlayer, drive: tileentity.DiskDrive) extends Player(playerInventory, drive) {
addSlotToContainer(80, 35, Slot.Floppy)
addPlayerInventorySlots(8, 84)
}