blob: 03ab77e72ce1b8ecf5582110b35853682892364f [file] [log] [blame] [raw]
package li.cil.oc.common.item
import li.cil.oc.Settings
class CPU(val parent: Delegator, val tier: Int) extends Delegate with ItemTier {
override val unlocalizedName = super.unlocalizedName + tier
override protected def tooltipName = Option(super.unlocalizedName)
override protected def tooltipData = Seq(Settings.get.cpuComponentSupport(tier))
}