blob: 81f0ac7af8bb180a5594edcc8e490c601cd4f525 [file] [log] [blame] [raw]
package li.cil.oc.api.driver
/**
* List of possible item component types.
* <p/>
* This is used to determine which item components may go into which slots in
* a computer, since unlike block components, item components must be placed
* inside the computer, not next to it.
*/
object Slot extends Enumeration {
val PSU = Value("PSU")
val RAM = Value("RAM")
val HDD = Value("HDD")
val PCI = Value("PCI")
}