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