cutting wire image

This commit is contained in:
Florian Nücke 2013-12-01 01:09:17 +01:00
parent 1a021cae07
commit 10ee625c80
2 changed files with 9 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 B

View File

@ -1,5 +1,14 @@
package li.cil.oc.common.item
import li.cil.oc.Settings
import net.minecraft.client.renderer.texture.IconRegister
class CuttingWire(val parent: Delegator) extends Delegate {
val unlocalizedName = "CuttingWire"
override def registerIcons(iconRegister: IconRegister) {
super.registerIcons(iconRegister)
icon = iconRegister.registerIcon(Settings.resourceDomain + ":cutting_wire")
}
}