blob: 44a10a0324c08dfdb1ffbe413cdd45270fae0c2e [file] [log] [blame] [raw]
package li.cil.oc
import li.cil.oc.common.items.ItemHDD
import li.cil.oc.common.items.ItemGraphicsCard
import li.cil.oc.common.util.ItemComponentCache
import li.cil.oc.server.components.GraphicsCard
object Items {
var gpu: ItemGraphicsCard = null
var hdd: ItemHDD = null
def init() {
gpu = new ItemGraphicsCard
hdd = new ItemHDD
ItemComponentCache.register(Config.itemGPUId, nbt => new GraphicsCard(nbt))
}
}