blob: 20a2ad318c78dbcb866e4fd7dfba9857b4902c46 [file] [log] [blame] [raw]
package li.cil.oc.common.item
import scala.language.existentials
class CPU(val parent: Delegator, val tier: Int) extends Delegate with traits.ItemTier with traits.CPULike {
override val unlocalizedName = super.unlocalizedName + tier
override def cpuTier = tier
override protected def tooltipName = Option(super.unlocalizedName)
}