blob: 0fb7074615fa95c5d7433a35ab13d3c948d885e5 [file] [log] [blame] [raw]
package li.cil.oc.common.item
class GraphicsCard(val parent: Delegator, val tier: Int) extends traits.Delegate with traits.ItemTier with traits.GPULike {
override val unlocalizedName = super.unlocalizedName + tier
override def gpuTier = tier
override protected def tooltipName = Option(super.unlocalizedName)
}